Some Mathematical Functions

The Wolfram Language includes a very large collection of mathematical functions. "Mathematical Functions" gives the complete list. Here are a few of the common ones.
Sqrt[x]
square root ( )
Exp[x]
exponential ( )
Log[x]
natural logarithm ( )
Log[b,x]
logarithm to base ()
Sin[x],
Cos[x],
Tan[x]
trigonometric functions (with arguments in radians)
ArcSin[x],
ArcCos[x],
ArcTan[x]
inverse trigonometric functions
n!
factorial (product of integers )
Abs[x]
absolute value
Round[x]
closest integer to
Mod[n,m]
modulo (remainder on division of by )
RandomReal[]
pseudorandom number between 0 and 1
Max[x,y,],
Min[x,y,]
maximum, minimum of , ,
FactorInteger[n]
Some common mathematical functions.
The arguments of all Wolfram Language functions are enclosed in square brackets.
The names of builtin Wolfram Language functions begin with capital letters.
Two important points about functions in the Wolfram Language.
It is important to remember that all function arguments in the Wolfram Language are enclosed in square brackets, not parentheses. Parentheses in the Wolfram Language are used only to indicate the grouping of terms, and never to give function arguments.
This gives . Notice the capital letter for Log, and the square brackets for the argument:
Just as with arithmetic operations, the Wolfram Language tries to give exact values for mathematical functions when you give it exact input.
This gives as an exact integer:
This gives an approximate numerical result for :
The presence of an explicit decimal point tells the Wolfram Language to give an approximate numerical result:
Since you are not asking for an approximate numerical result, the Wolfram Language leaves the number here in an exact symbolic form:
Here is the exact integer result for . Computing factorials like this can give you very large numbers. You should be able to calculate up to at least 2000! in a short time:
This gives the approximate numerical value of the factorial:
Pi
E
(normally output as )
Degree
: degrees-to-radians conversion factor (normally output as )
I
(normally output as )
Infinity
Some common mathematical constants.
Notice that the names of these builtin constants all begin with capital letters.
This gives the numerical value of :
This gives the exact result for . Notice that the arguments to trigonometric functions are always in radians:
This gives the numerical value of . Multiplying by the constant Degree converts the argument to radians:
Log[x] gives logarithms to base :
You can get logarithms in any base b using Log[b,x]. As in standard mathematical notation, the b is optional: