how to substitute a variable by a number in wolframalpha

11.1k Views Asked by At

Peace be upon you,

How can I compute \begin{align*} sin'(0) \end{align*} in Wolframalpha? like what in Maple, I try

subs(diff(sin(x),x),x=0)

But it doesn't work. I searched the web for "substitution in wolframalpha", but no helpful answer I got.

1

There are 1 best solutions below

0
On BEST ANSWER

The following all work:

ReplaceAll[Diff[Sin[x], x] , {x -> 0}]

D[Sin[x], x] /. {x -> 0}

Diff[Sin[x], x] where x = 0

Sin'(0)