Lists
As we saw, lists can be created using braces
We can perform arithmetic operations on lists
The entries of a list are accessed using double-brackets (or the special notation [[ ]])
The entries are indexed starting with one
We can also index a list using a list
Lists can be mutated this way
Creating Lists
Simple ranges can be constructed using Range
Much more flexible is Table, which allows for the creation of lists using expressions
Table can also be used to create matrices (which are represnted as lists of lists)
Matrices can be displayed nicely using MatrixForm
Note: functions can also be evaluated using postfix notation with the // operator