Reputation: 1624
Several years ago wolfram alpha stopped providing the step by step solution in the browser. However, until last month it was still possible to get a step by step solution using the mobile version of wolfram alpha (maybe they simply forget to restrict it). However, now it seems they fixed it and as I got so much used to checking my differential equations using walpha I was wondering if the Android app does the job or if I have to upgrade to pro.
Upvotes: 3
Views: 5487
Reputation: 1
On the elementary end, Wolfram|Alpha can do arithmetic showing steps, make clocks, work with colors and so on.
Upvotes: 0
Reputation: 8645
Running from the website prompts you to buy Alpha Pro.
Trying either "differentiate (x^2 + 3 x) with respect to x" or D[(x^2 + 3 x), x]
.
However, calling Alpha from Mathematica works, as posted here:-
Get a “step-by-step” evaluation in Mathematica
ShowSteps[exp_] := WolframAlpha[ToString@HoldForm@InputForm@exp,
{{"Input", 2}, "Content"},
PodStates -> {"Input__Step-by-step solution"}]
SetAttributes[ShowSteps, HoldAll]
D[(x^2 + 3 x), x] // ShowSteps
Upvotes: 4