| + | Addition | x+4, f(x)+5 | |
| - | Subtraktion | x-4, f(x)-5 | |
| * | Multiplikation | x*4, f(x)*5 | |
| · | Multiplikation | (x+4)·(x-2), f(x)·5 | Dieses Symbol ist gleichbedeutend mit * |
| / | Division | x/4, f(x)/5 | |
| : | Division | x:4, f(x):5 | Dieses Symbol ist gleichbedeutend mit / |
| ^ | Potenzierung | x^4, f(x)^5, 3^x, 2^(3+x) | |
| ( { [ | Öffnende Klammern | (x+4)*2, [(f(x)+5)+2]*2 | |
| ) } ] | Schließende Klammern | siehe Öffnende Klammern | |
| ¹ ² ³ | Potenzierung mit 1 2 3 | x², (x-3)², 4x³+3x² | |
| ¼ ½ ¾ | Brüche 1/4, 1/2, 3/4 | ¼*x² | |
| |...| | Betragstriche | |x|, f(|x|), |f(x)| | |
| e | Eulersche Zahl e | e^x | |
| pi | Kreiszahl Pi | sin(x*pi) | |
| 1,23 | Dezimalzahl | 1,2+4,3*x | |
| % | Prozentsymbol, *1/100 | 40% | Dieses Symbol ist lediglich eine Abkürzung für *1/100 |
| ° | Gradsymbol, *pi/180 | 90° | Dieses Symbol ist lediglich eine Abkürzung für *pi/180 |
| < <= >= == != | Boolesche Vergleichsoperatoren | falls(x<4; 3x+4; -3x+4), falls(1<x<2; x²) | |
| und oder nicht & | Boolesche Operatoren | falls(2<x und x<3;x²) | |