Divide
Divide(a, b)
a / b
represents the division of
a
byb
.
Examples
>> 30 / 56
>> 1 / 81/8
>> Pi / 4Pi / 4
Use N
or a decimal point to force numeric evaluation:
>> Pi / 4.00.7853981633974483
>> N(1 / 8)0.125
Nested divisions:
>> a / b / ca/(b*c)
>> a / (b / c)(a*c)/b
>> a / b / (c / (d / e))(a*d)/(b*c*e)
>> a / (b ^ 2 * c ^ 3 / e)(a*e)/(b^2*c^3)
>> 1 / 4.00.25
>> 10 / 3 // FullFormRational(10,3)
>> a / b // FullFormTimes(a, Power(b, -1))
Implementation status
- ✅ - full supported