Step-by-Step Solutions
Simplification Steps
Steps for Sketching a Curve
Maple 2022 includes new commands for showing the steps needed to manipulate algebraic expressions in order to reduce them to their simplest form.
In general the generated steps try to find that hard balance between being too verbose and too cryptic. The SimplifySteps command errs on the side of adding more steps, and is aimed to help someone who wants to learn what the steps are, even for fundamentals like adding fractions. Depending on the problem it will adjust somewhat; recognizing higher level problems for which it will decide to skip more easy-level steps.
Here are some examples of different categories of problems that SimplifySteps as well as related command FractionSteps can handle:
withStudent:-Basics:
Fractions
There is a dedicated FractionSteps command that goes into slightly more detail than SimplifySteps
FractionSteps 1/2 + 1/6
Let's Simplify Fractions12+16•Find fractions to get lowest common denominator of633⋅12+11⋅16•Multiply3⋅16+1⋅16•Add numerators3⋅1+1⋅16•Multiply3⋅13+1⋅16•Multiply1⋅13+16•Add3+146•Cancel out factor of223
SimplifySteps 1/2 + 1/6
Let's simplify12+16•Find fractions to get lowest common denominator of633⋅12+11⋅16•Multiply3⋅16+1⋅16•Add fractions23
Radicals
SimplifySteps sqrt(6)*sqrt(10)/sqrt(12)
Let's simplify6⋅1012•Pull out a factor of4=2from126⁢102⁢3•Multiply in order to rationalize the denominator33⋅6⁢102⁢3•Multiply the denominator3⋅6⁢106•Factor roots3⋅2⋅3⋅2⋅56•Combine2⋅2,3⋅33⋅2⋅56•Multiply3⋅2⁢56⁢56•Cancel out factor of65
SimplifyStepssqrt(6)*sqrt(10)/(12)^(1/3)
Let's simplify6⋅101213•Multiply in order to rationalize the denominator12231223⋅6⁢101213•Multiply the denominator1223⋅6⁢1012•Factor roots323⋅2⁢213⋅2⋅3⋅2⋅512•Combine323⋅3,213⋅2⋅22⋅3⁢316⋅2⁢213⋅512•Multiply3⁢316⋅2⁢213⁢52⋅6⁢5⁢213⁢31612•Multiply2⋅6⁢5⁢213⁢31612⁢5⁢213⁢31612•Cancel out factor of125⁢213⁢316
Exponents
SimplifySteps(2*x^3*y^3)*(3*x^1*y^2)^2
Let's simplify2⋅x3⋅y3⋅3⋅x⋅y22•Evaluate exponent3⁢x⁢y222⋅x3⋅y3⋅9⁢x2⁢y4•Multiply2⋅x3⋅y3⋅9⁢x2⁢y418⁢x5⁢y7
SimplifyStepsx^3*x^5
Let's simplifyx3⋅x5•Apply the product rulean⁢am=an+mto add exponents with common basex3+5•Add exponentsx8•Solutionx8
SimplifySteps(b^n)^m
Let's simplifybnm•Apply the integer power of a power rule,anm=an⁢mbn⋅m
SimplifyStepsy^5/y^4
Let's simplifyy5y4•Cancel out factor ofy4providedy4≠0y
SimplifyStepsy^(-5)/y^4
Let's simplifyy−5y4•Divide assumingy4≠ 01y9
SimplifySteps123^5/123^4
Let's simplify12351234•Apply the quotient rule:anam=an−m1231•Evaluate exponent1231123
Logs
SimplifySteps log[10](2)/log[10](5)+log[10](3)
Let's simplifylog10⁡2log10⁡5+log10⁡3•Use the log rule,loga⁡x=logb⁡xlogb⁡ato express as a single logarithmlog5⁡2+log10⁡3•Solutionlog5⁡2+log10⁡3
Note: This is different than how Maple's simplify command treats expressions like this, always converting to ln:
simplify⁡log102log105+log103
ln⁡2ln⁡5+ln⁡3ln⁡2+ln⁡5
SimplifySteps %log10100+%log101000
Let's simplifylog10⁡100+log10⁡1000•Evaluatelog10⁡1002+log10⁡1000•Evaluatelog10⁡10002+3•Add2+35
SimplifySteps5*log[z](z^4)
Let's simplify5⋅logz⁡z4•Apply the log ruleloga⁡mn=n⁢loga⁡m5⋅4⁢logz⁡z•Apply the log ruleloga⁡a=15⋅4•Multiply5⋅420
You can also use the new PowerSteps command to get step by step results for problems with radicals, exponents, and logarithms.
Trig
SimplifySteps 1+cot(x)^2
Let's simplify1+cot⁡x2•ApplyPythagorastrig identity,cot⁡x2=csc⁡x2−11+csc⁡x2−1•ApplyReciprocal Functiontrig identity,csc⁡x=1sin⁡x1sin⁡x2•Evaluate1sin⁡x2
SimplifySteps"sinPi + Pi + x"
Let's simplifysin⁡π+π+x•Addπ+π+xsin⁡2⁢π+x•Evaluatesin⁡2⁢π+xsin⁡x
SimplifySteps⁡sec⁡x2−1sec⁡x2
Let's simplifysec⁡x2−1sec⁡x2•ApplyReciprocal Functiontrig identity,sec⁡x=1cos⁡xsec⁡x2−11cos⁡x2•ApplyPythagorastrig identity,sec⁡x2=1+tan⁡x21+tan⁡x2−1⁢cos⁡x2•ApplyQuotienttrig identity,tan⁡x=sin⁡xcos⁡xsin⁡xcos⁡x2⁢cos⁡x2•Evaluatesin⁡x2
SimplifySteps⁡−cos⁡x2+1⁢1+cot⁡x2
Let's simplify−1⋅cos⁡x2+1⋅1+cot⁡x2•ApplyPythagorastrig identity,cot⁡x2=csc⁡x2−1−cos⁡x2+1⁢1+csc⁡x2−1•ApplyReciprocal Functiontrig identity,csc⁡x=1sin⁡x−cos⁡x2+1⁢1sin⁡x2•ApplyPythagorastrig identity,cos⁡x2=1−sin⁡x2−1−sin⁡x2+1sin⁡x2•Evaluate1
You can also use the new TrigSteps command to get these step by step results.
Calculus
Showing the steps to solving an integral, limit, or derivative has been available in past versions of Maple via the Student:-Calculus1:-ShowSolution command. You can now also access those step by step solutions through SimplifySteps, further unifying the ability to do step by step solutions using a single command.
SimplifyStepsx2+∫xⅆx
Let's simplifyx2+∫xⅆx•Integralto evaluate∫xⅆx▫1. Apply thepowerrule to the term∫xⅆx◦Recall the definition of thepowerrule, for n≠-1∫xnⅆx=xn+1n+1◦This means:∫xⅆx=x1+11+1◦So,∫xⅆx=x22We can rewrite the integral as:x22•Sub evaluatedintegralback in expression3⁢x22
Maple 2022 includes a new command for showing the steps needed to sketch the graph of an expression by identifying the basic function and the transformations done to the function. Various kinds of expressions are handled, including trig, logs, and polynomials to pick just a few. Here are some examples:
CurveSketchSteps⁡2⁢sin⁡3⁢x+π3+1
Let's plot2⁢sin⁡3⁢x+π3+1•Compared to the plot ofsin⁡x, we have a vertical stretch by a factor of22⋅sin⁡3⋅x+π9+1•Then, we have a horizontal compression by a factor of132⋅sin⁡3⋅x+π9+1•Then, we have a vertical shift of12⋅sin⁡3⋅x+π9+1•Then, we have a horizontal shift of−π92⋅sin⁡3⋅x+π9+1•Apply the horizontal shift and stretch to the range,x=−2⁢π..2⁢π−2⁢π⋅13+π9..2⁢π⋅13+π9=−2.443460953..1.745329252•We can now plot using the information extractedPLOT⁡...
CurveSketchSteps⁡2⁢x2+4⁢x+10
Let's plot2⁢x2+4⁢x+102⋅x2+4⋅x+10•Complete the square2⁢x+12+8•With the expression in vertex form we can extract valuable information2⋅x+12+8•The coefficient2of thex+12term indicates a parabola that opensupand has a verticalstretchof22⋅x+12+8•We have a horizontal shift of−1and a vertical shift of8which gives a vertex of (−1,8)2⋅x+12+8•We can now plot using the information extractedPLOT⁡...
CurveSketchSteps⁡4⁢x+10,output=typeset
Let's plot4⁢x+104⋅x+10•This is a line; find two points and draw a line through themy=4⁢x+10•Setx= 0 to solve for y intercepty=10•This gives a y intercept of (0,10)y=10•Set expresson to 0 to solve forxintercept0=4⋅x+10•Subtract4⋅xfrom both sides0−4⋅x=4⋅x+10−4⋅x•Simplify−4⋅x=10•Divide both sides by−4−4⋅x−4=10−4•Simplifyx=−52•This gives anxintercept of (−52,0)x=−52•By connecting through the two points we can plot the linePLOT⁡...
CurveSketchSteps⁡23⁢x+2
Let's plot23⁢x+2•Rewrite the equation in the following form23⋅x+23+0•Compared to the plot of1x, we have a vertical stretch by a factor of2PLOT⁡...•Then, we have a horizontal compression by a factor of13PLOT⁡...•Then, we have a horizontal shift of23PLOT⁡...•The final plot with asymptotes in cyan aty=0andx=−23isPLOT⁡...
For more information, see the help page Student:-Basics:-CurveSketchSteps.
Download Help Document