<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, explanation of steps</title>
    <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 09:41:51 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 09:41:51 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, explanation of steps</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, explanation of steps</title>
      <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps</link>
    </image>
    <item>
      <title>infolevel</title>
      <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps?ref=Feed:MaplePrimes:explanation of steps:Comments#answer65143</link>
      <itunes:summary>&lt;p&gt;The traditional way of getting some idea about what Maple is doing is to use the userinfo and infolevel commands.&lt;/p&gt;
&lt;p&gt;userinfo is used by programmers to provide intermediate information about a command.&lt;/p&gt;
&lt;p&gt;Users use the infolevel to control how much information they see, and which procedures information they want to see. The easiest use is to turn on the reporting from all commands:&lt;/p&gt;
&lt;pre&gt;
infolevel[all] := 100;   # it's not unusual to set this to be much higher
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 100
&lt;/pre&gt;
&lt;p&gt;Then, when you try to simplify an expression you might see something like this:&lt;/p&gt;
&lt;pre&gt;
simplify( sin(x)^2+cos(2*x)-3*sin(x)^4 );
simplify/do: applying&amp;nbsp; commonpow&amp;nbsp; function to expression
simplify/do: applying&amp;nbsp; power&amp;nbsp; function to expression
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -3 + 7 cos(x)&amp;nbsp; - 3 cos(x) 

&lt;/pre&gt;
&lt;p&gt;For more information about infolevel, please see the help page for userinfo and infolevel.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;The traditional way of getting some idea about what Maple is doing is to use the userinfo and infolevel commands.&lt;/p&gt;
&lt;p&gt;userinfo is used by programmers to provide intermediate information about a command.&lt;/p&gt;
&lt;p&gt;Users use the infolevel to control how much information they see, and which procedures information they want to see. The easiest use is to turn on the reporting from all commands:&lt;/p&gt;
&lt;pre&gt;
infolevel[all] := 100;   # it's not unusual to set this to be much higher
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 100
&lt;/pre&gt;
&lt;p&gt;Then, when you try to simplify an expression you might see something like this:&lt;/p&gt;
&lt;pre&gt;
simplify( sin(x)^2+cos(2*x)-3*sin(x)^4 );
simplify/do: applying&amp;nbsp; commonpow&amp;nbsp; function to expression
simplify/do: applying&amp;nbsp; power&amp;nbsp; function to expression
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -3 + 7 cos(x)&amp;nbsp; - 3 cos(x) 

&lt;/pre&gt;
&lt;p&gt;For more information about infolevel, please see the help page for userinfo and infolevel.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</description>
      <guid>65143</guid>
      <pubDate>Thu, 25 Jun 2009 20:42:16 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
    <item>
      <title>There are also a few tutors</title>
      <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps?ref=Feed:MaplePrimes:explanation of steps:Comments#answer65144</link>
      <itunes:summary>&lt;p&gt;There are also a few tutors that are very handy&lt;/p&gt;
&lt;p&gt;If you are interested in seeing steps on differentiation, integration, and limits, do the following:&lt;/p&gt;
&lt;p&gt;Open up Maple 13&lt;br /&gt;
Under the &lt;b&gt;Tools&lt;/b&gt; menu, go to &lt;b&gt;Tutors&lt;/b&gt;, then S&lt;b&gt;ingle-Variable Calculus&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;If you select either Differentiation Methods, Integration Methods, or Limit Methods, you are able to see step by step evaluations.&lt;/p&gt;
&lt;p&gt;Take Care&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;There are also a few tutors that are very handy&lt;/p&gt;
&lt;p&gt;If you are interested in seeing steps on differentiation, integration, and limits, do the following:&lt;/p&gt;
&lt;p&gt;Open up Maple 13&lt;br /&gt;
Under the &lt;b&gt;Tools&lt;/b&gt; menu, go to &lt;b&gt;Tutors&lt;/b&gt;, then S&lt;b&gt;ingle-Variable Calculus&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;If you select either Differentiation Methods, Integration Methods, or Limit Methods, you are able to see step by step evaluations.&lt;/p&gt;
&lt;p&gt;Take Care&lt;/p&gt;</description>
      <guid>65144</guid>
      <pubDate>Thu, 25 Jun 2009 21:14:28 Z</pubDate>
      <itunes:author>jzivku</itunes:author>
      <author>jzivku</author>
    </item>
    <item>
      <title>shutting off userinfo &amp; infolevel</title>
      <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps?ref=Feed:MaplePrimes:explanation of steps:Comments#answer65145</link>
      <itunes:summary>&lt;p&gt;How do I shut off userinfo &amp;amp; infolevel?&lt;/p&gt;
&lt;p&gt;Alla&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;How do I shut off userinfo &amp;amp; infolevel?&lt;/p&gt;
&lt;p&gt;Alla&lt;/p&gt;</description>
      <guid>65145</guid>
      <pubDate>Fri, 26 Jun 2009 06:42:35 Z</pubDate>
      <itunes:author>alla</itunes:author>
      <author>alla</author>
    </item>
    <item>
      <title>infolevel in Maple library</title>
      <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps?ref=Feed:MaplePrimes:explanation of steps:Comments#comment65147</link>
      <itunes:summary>&lt;p&gt;According to infolevel's help page, the following values are used as the infolevel integer values in the Maple library:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Level 1: reserved for information that the user must be told.&lt;/li&gt;
    &lt;li&gt;Level 2,3: general information, including technique or algorithm being used.&lt;/li&gt;
    &lt;li&gt;Level 4,5: more detailed information about how the problem is being solved&lt;/li&gt;
&lt;/ul&gt;</itunes:summary>
      <description>&lt;p&gt;According to infolevel's help page, the following values are used as the infolevel integer values in the Maple library:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;Level 1: reserved for information that the user must be told.&lt;/li&gt;
    &lt;li&gt;Level 2,3: general information, including technique or algorithm being used.&lt;/li&gt;
    &lt;li&gt;Level 4,5: more detailed information about how the problem is being solved&lt;/li&gt;
&lt;/ul&gt;</description>
      <guid>65147</guid>
      <pubDate>Fri, 26 Jun 2009 19:51:20 Z</pubDate>
      <itunes:author>clso</itunes:author>
      <author>clso</author>
    </item>
    <item>
      <title>infolevel[all] := 1:</title>
      <link>http://www.mapleprimes.com/questions/37112-Explanation-Of-Steps?ref=Feed:MaplePrimes:explanation of steps:Comments#comment65146</link>
      <itunes:summary>&lt;p&gt;Just reset the appropriate infolevels to 1:&lt;/p&gt;
&lt;pre&gt;
infolevel[all] := 1:
&lt;/pre&gt;
&lt;p&gt;I should have included this in my original posting - sorry.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Just reset the appropriate infolevels to 1:&lt;/p&gt;
&lt;pre&gt;
infolevel[all] := 1:
&lt;/pre&gt;
&lt;p&gt;I should have included this in my original posting - sorry.&lt;/p&gt;
&lt;p&gt;Doug&lt;/p&gt;
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade  &amp;lt;&amp;gt;&amp;lt;
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu&lt;/pre&gt;</description>
      <guid>65146</guid>
      <pubDate>Fri, 26 Jun 2009 07:37:25 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
  </channel>
</rss>