- About CISER Computing
- Computing Resources
- Request a CISER Computing Account
- Computing Node Availability and Usage
- Computing News & User Notes
- HelpDesk Services
- CISER Computing Basics
- CISER Computing FAQ
- CISER Billing FAQ
- Workshop Downloads
- Workshop Schedules & Registration
- Software on the Computing Nodes
- Online Help for Statistical Software
- Buying Statistical Software at Cornell
How to Run Mathematica on the CISER Research Computing System
Once you log on to a CISER computing node click Start, point to Programs, and choose Mathematica 4.1 from the Mathematica program group. Your screen after start up will consist of two parts: a new notebook and a pallet for entering a special input.
You enter Mathematica input into the notebook, then type SHIFT-RETURN to make Mathematica process your input. You can use the standard editing features of your graphical interface to prepare your input, which may go on for several lines. SHIFT-RETURN tells Mathematica that you have finished your input.
After you send Mathematica input from your notebook, Mathematica will label your input with In[n]:= . It labels the corresponding output Out[n]= .
Example:
With a notebook interface, you just type 2+2. Mathematica then adds the label In[1]:= , and prints the result.
In[1]:= 2+2
Out[1] = 4
Mathematica is made of two parts: a kernel and a front end. The kernel is the part that does calculations. The front end is the part that handles notebooks and interaction with the user.
Your first calculation will take longer then subsequent calculations because the Mathmatica kernel has to start up.