Wolfram Language Fast Introduction for Math Students
Los Geht’s »

Exponenten & Logarithmen

Die Wolfram Language stellt die Exponentialkonstante als E dar.

Log gibt den natürlichen Logarithmus eines Ausdrucks:

In[1]:=
Click for copyable input
Log[E^2]
Out[1]=

Berechne den Logarithmus zur Basis 2:

In[2]:=
Click for copyable input
Log[2, 64]
Out[2]=

Erzeuge ein Diagramm der Logarithmusfunktion:

In[1]:=
Click for copyable input
LogPlot[E^x, {x, 1, 5}]
Out[1]=

Verwende die logarithmische Darstellung für die Achsen:

In[2]:=
Click for copyable input
LogLogPlot[x^2 + x^3, {x, 1, 100}]
Out[2]=