Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Symbolic Computing

$ wo 'cow + 5'
5 + cow
$ wo 'cow + 5 + 10'
15 + cow
$ wo 'moo = cow + 5'
5 + cow
$ wo 'D[x^n, x]'
n*x^(-1 + n)
$ wo 'Integrate[x^2 + Sin[x], x]'
x^3/3 - Cos[x]

Limits

$ wo 'Limit[Sin[x]/x, x -> 0]'
1

Series

$ wo 'Series[Exp[x], {x, 0, 3}]'
SeriesData[x, 0, {1, 1, 1/2, 1/6}, 0, 4, 1]

Apart

$ wo 'Apart[1/(x^2 - 1)]'
1/(2*(-1 + x)) - 1/(2*(1 + x))

Together

$ wo 'Together[1/x + 1/y]'
(x + y)/(x*y)

Cancel

$ wo 'Cancel[(x^2 - 1)/(x - 1)]'
1 + x

Collect

$ wo 'Collect[x*y + x*z, x]'
x*(y + z)

ExpandAll

$ wo 'ExpandAll[x*(x + 1)^2]'
x + 2*x^2 + x^3