This page is for anyone who has never opened Mathematica before. By the end, you should
be able to open a notebook, run cells, understand basic syntax, and save your work without fear.
Step 0
Getting access
The Mathematica Lab assumes that you have access through a university licence or Wolfram Cloud.
If you are not yet set up, ask a lecturer, a tutor, or the platform maintainers for the current instructions.
• Install Mathematica Desktop or log in to Wolfram Cloud.
• Open a new blank notebook.
• Type your name and “Mathematica Lab foundations” on the first line as a comment.
🌱 Absolute beginner friendly🕒 10–15 minutes
Step 1
Cells, input, and output
In Mathematica, everything happens inside cells. Each input cell starts with
In[ ]:= and produces an output labelled Out[ ]= when you evaluate it.
Type the following in one cell and press Shift + Enter:
2 + 3
2^10
Sin[Pi/4]
You should see the outputs appear directly under the input. Each time you run a cell,
Mathematica updates the input and output numbers.
Keyboard habits
Shift + Enter — run current cellAlt + Enter — run and create new cellCtrl + Z — undo
You can run a cell and see output without panicking.
You can tell which part of the notebook is “input” and which is “output”.
Step 2
Syntax: brackets, lists, and function names
Mathematica is strict but consistent:
• Round brackets ( ) for grouping.
• Square brackets [ ] for function arguments.
• Curly brackets { } for lists.
• Function names start with a capital letter: Sin, Exp, Log, Sqrt.