Explore the latest version of An Elementary Introduction to the Wolfram Language »
23More about Numbers
Adding 1/2+1/3 gives an exact answer as a fraction:
In[1]:=
Click for copyable input
Out[1]=
Get an approximate numerical answer:
In[2]:=
Click for copyable input
Out[2]=
If theres any decimal number in your input, the Wolfram Language will automatically give you an approximate answer.
The presence of a decimal number makes the result be approximate:
In[3]:=
Click for copyable input
Out[3]=
In[4]:=
Click for copyable input
Out[4]=
Heres 2 raised to the power 1000:
In[5]:=
Click for copyable input
Out[5]=
Get a numerical approximation:
In[6]:=
Click for copyable input
Out[6]=
Enter a number in scientific notation:
In[7]:=
Click for copyable input
Out[7]=
Get a numerical approximation to π:
In[8]:=
Click for copyable input
Out[8]=
Compute 250 digits of π:
In[9]:=
Click for copyable input
Out[9]=
Generate a random real number in the range 0 to 10:
In[10]:=
Click for copyable input
Out[10]=
Generate 5 random real numbers:
In[11]:=
Click for copyable input
Out[11]=
An alternative way to ask for 5 random real numbers:
In[12]:=
Click for copyable input
Out[12]=
In[13]:=
Click for copyable input
Out[13]=
The Wolfram Language has a huge range of mathematical functions built in, from basic to very sophisticated.
In[14]:=
Click for copyable input
Out[14]=
Find the millionth prime number:
In[15]:=
Click for copyable input
Out[15]=
Plot the first 50 primes:
In[16]:=
Click for copyable input
Out[16]=
Three functions common in many practical situations are Sqrt (square root), Log10 (logarithm to base 10) and Log (natural logarithm).
The square root of 16 is 4:
In[17]:=
Click for copyable input
Out[17]=
If you dont ask for a numerical approximation, youll get an exact formula:
In[18]:=
Click for copyable input
Out[18]=
N gives a numerical approximation:
In[19]:=
Click for copyable input
Out[19]=
Logarithms are often useful when youre dealing with numbers that have a wide range of sizes. Lets plot the masses of the planets. With ListPlot one cant tell anything about the planets before Jupiter. But ListLogPlot shows the relative sizes much more clearly.
Make an ordinary ListPlot of the masses of the planets:
In[20]:=
Click for copyable input
Out[20]=
In[21]:=
Click for copyable input
Out[21]=
Abs effectively just drops minus signs:
In[22]:=
Click for copyable input
Out[22]=
Next theres Round, which rounds to the nearest whole number.
Round rounds to the nearest whole number:
In[23]:=
Click for copyable input
Out[23]=
Another function thats very useful is Mod. Lets say youre counting up minutes in an hour. When you reach 60, youll want to start again from 0. Thats what Mod lets you do.
Compute a sequence of numbers mod 60:
In[24]:=
Click for copyable input
Out[24]=
N[expr] numerical approximation
Pi the number π (pi)3.14
Sqrt[x] square root
Log10[x] logarithm to base 10
Log[x] natural logarithm (ln)
Abs[x] absolute value (drop minus signs)
Round[x] round to nearest integer
Prime[n] nth prime number
Mod[x,n] modulo (clock arithmetic)
RandomReal[max] random real number between 0 and max
RandomReal[max,n] list of n random real numbers
ListLogPlot[data] plot on a logarithmic scale
23.1Find to 500-digit precision. »
Expected output:
Out[]=
23.2Generate 10 random real numbers between 0 and 1. »
Sample expected output:
Out[]=
23.3Make a plot of 200 points with random real x and y coordinates between 0 and 1. »
Sample expected output:
Out[]=
23.4Create a random walk using AnglePath and 1000 random real numbers between 0 and 2π»
Sample expected output:
Out[]=
23.5Make a table of Mod[n^2, 10] for n from 0 to 30. »
Expected output:
Out[]=
23.6Make a line plot of Mod[n^n, 10] for n from 1 to 100. »
Expected output:
Out[]=
23.7Make a table of the first 10 powers of π, rounded to integers. »
Expected output:
Out[]=
23.8Make a graph by connecting n with Mod[n^2, 100] for n from 0 to 99. »
Expected output:
Out[]=
Sample expected output:
Out[]=
Expected output:
Out[]=
23.11Make a line plot of the differences between successive primes up to 100. »
Expected output:
Out[]=
23.12Generate a sequence of 20 middle C notes with random durations between 0 and 0.5 seconds. »
Sample expected output:
Out[]=
23.13Make an array plot of Mod[i, j] for i and j up to 50. »
Expected output:
Out[]=
23.14Make a list for n from 2 to 10 of array plots for x and y up to 50 of x^y mod n»
Expected output:
Out[]=
+23.1Use Round to compute the fractional part of π to 50 digits. »
Expected output:
Out[]=
+23.2Find the sum of the first 1000 prime numbers. »
Expected output:
Out[]=
+23.3Make a list of the first 100 primes modulo 4. »
Expected output:
Out[]=
+23.4Make a list of the first 10000 primes modulo 4, multiply them by 90° and create an angle path from them. »
Expected output:
Out[]=
From standard school math, ones like Sin, Cos, ArcTan, Exp, as well as GCD, Factorial, Fibonacci. From physics and engineering and higher math, ones like Gamma (gamma function), BesselJ (Bessel function), EllipticK (elliptic integral), Zeta (Riemann zeta function), PrimePi, EulerPhi. From statistics, ones like Erf, NormalDistribution, ChiSquareDistribution. Hundreds of functions altogether.
Its the total number of decimal digits quoted in the number. N[100/3, 5] gives 33.333, which has 5 digits of precision. The number 100/3 is exact; N[100/3, 5] approximates it to 5-digit precision.
What does the at the end of each line in a long number mean?
Its there to show that the number continues onto the next linelike a hyphen in text.
Of course. The symbol I (capital i) represents the square root of 1.
Why does N[1.5/7, 100] not give me a 100-digit result?
Because 1.5 is an approximate number with much less than 100-digit precision. N[15/70, 100] will for example give a 100-digit-precision number.
 
Download Notebook Version
es