In[1]:= Merge[{1, 5, 7}, {2, 3, 8}]
Out[1]= {1, 2, 3, 5, 7, 8}
In[2]:= Merge[{}, {2, 3}]
Out[2]= {2, 3}
In[3]:= Merge[{1, 1, 2, 3}, {2, 3}]
Out[3]= {1, 1, 2, 2, 3, 3}
TableForm instead of MatrixForm.
It doesn't matter in the printed book which was formatted in OutputForm,
rather than StandardForm.
$PrePrint = TableForm[#, TableHeadings -> Automatic] &;
In[3]:= Maxima[{4, 7, 5, 2, 7, 9, 1}]
Out[3]= {4, 7, 9}
select composerName, workTitle, artistName, instrument
from recordings, works, composers, performers, artists
where recordings.recordNumber = "45830" and
recordings.workKey = works.workKey and
works.compKey = composers.compKey and
recordings.recKey = performers.recKey and
performers.artistKey = artists.artistKey
Please use email to tell me about any program bugs, typos in the text, suggestions, and so.