<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - comments on Blog Entry, Gems from the Little Red Book of Maple Magic</title>
    <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 08:34:01 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 08:34:01 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - comments on Blog Entry, Gems from the Little Red Book of Maple Magic</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic</link>
    </image>
    <item>
      <title>gem 1</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic?ref=Feed:MaplePrimes:Gems from the Little Red Book of Maple Magic:Comments#comment101550</link>
      <itunes:summary>&lt;p&gt;This is the sort of post that is helpful to lots of people. Good stuff.&lt;/p&gt;
&lt;p&gt;A few things about gem 1. The unwanted automatic conversion of &lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=f123e6a515ae18b4e8a9f056032dc31f.gif" alt="(r^2-(r-y)^2)^(1/2)"&gt;to &lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=5ebd3364e567aa624069aaf10d6a0001.gif" alt="sqrt(r^2-(r-y)^2)"&gt; seems due to using `sqrt` instead of power 1/2, no?&lt;/p&gt;
&lt;p&gt;Compare,&lt;/p&gt;
&lt;pre&gt;plots:-display(plots:-textplot([1,3/2,typeset(sqrt(r^2-(r-y)^2))]),&lt;br&gt;               plots:-textplot([1,1,typeset((r^2-(r-y)^2)^(1/2))]),&lt;br&gt;               view=[0..2,0..2]);&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;The programmatic example of using &lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=45269cdd6c90c56ba9cbccf1bce3cc74.gif" alt="subs(F=f^(`-1`),F(x))"&gt; in the legend might be more simply coded as,&lt;/p&gt;
&lt;pre&gt;plot(x, x=0..1, legend=subs(F=f^(Typesetting:-Typeset(-1)),F(x)));&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;You didn't mention it, but one of the relevant aspects is that subs(F=f^(`-1`),F(x)) produces an italicized -1, while the Typeset method shows as an upright character.&lt;/p&gt;
&lt;p&gt;Lastly, it looks like there's a problem with what gets displayed as regular output (not in a plot) for the input&lt;/p&gt;
&lt;pre&gt;`&amp;amp;+-`(x, 1/2);&lt;br&gt;&lt;/pre&gt;
&lt;p&gt;when the GUI's Typesetting level is "Maple Standard" and not "Extended" (see Tools-&amp;gt;Options-Display).&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
      <guid>101550</guid>
      <pubDate>Wed, 09 Feb 2011 23:49:57 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>gems</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic?ref=Feed:MaplePrimes:Gems from the Little Red Book of Maple Magic:Comments#comment101576</link>
      <itunes:summary>&lt;p&gt;nice post, thanks, very useful to have all these tips in one place.&lt;/p&gt;
&lt;p&gt;On gem 1: that's why I use LaTeX/PSTricks to label my plots. Once you have a system going it's pretty efficient.&lt;/p&gt;
&lt;p&gt;On gem 2: that's not so much using Maple as Maple using you! It would be nice, though presumably a gigantic task, to have an option like, say, "diff(expr,x,suggest)" which would return several forms of the derivative taken from a stored table and from which you could select...&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
      <guid>101576</guid>
      <pubDate>Thu, 10 Feb 2011 16:08:07 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>even more simple</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic?ref=Feed:MaplePrimes:Gems from the Little Red Book of Maple Magic:Comments#comment101626</link>
      <itunes:summary>&lt;p&gt;For the inverse function, the standard way of representing it, using the repeated composition operator &lt;strong&gt;@@&lt;/strong&gt; works fine in the Standard GUI:&lt;/p&gt;
&lt;pre&gt;plot(x, x=0..1, legend = typeset((f@@(-1))(x)), color=black);
&lt;/pre&gt;
&lt;p&gt;I find remarkable the usage of the pen and paper technology for recording these "magic" tricks.&lt;/p&gt;
&lt;p&gt;About x+/-1/2, the trick should read &lt;strong&gt; caption=typeset(`#mrow(mi("x"),mo("&amp;amp;pm;"),mfrac(mn("1"),mn("2")))`) &lt;/strong&gt;&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
      <guid>101626</guid>
      <pubDate>Sat, 12 Feb 2011 01:38:34 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
    <item>
      <title>useful as 2D Math, but different</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic?ref=Feed:MaplePrimes:Gems from the Little Red Book of Maple Magic:Comments#comment101627</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic#comment101626"&gt;@Alejandro Jakubi&lt;/a&gt; Your solution using f@@(-1) is handy, but it displays with brackets around the power of -1, like &lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=4e2209ce7b6aca9b7f406bcfcb1cbfd2.gif" alt="f@@(-1)"&gt;&lt;/p&gt;
&lt;p&gt;Robert L. showed that he wanted &lt;img class="math" src="http://www.mapleprimes.com/MapleImage.ashx?f=a5b82d2c94ee41921bdc4f28f1914373.gif" alt="f^`-1`"&gt;without brackets.&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
      <guid>101627</guid>
      <pubDate>Sat, 12 Feb 2011 02:11:17 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>grumble, grumble</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic?ref=Feed:MaplePrimes:Gems from the Little Red Book of Maple Magic:Comments#comment101628</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic#comment101626"&gt;&lt;/a&gt;f^(-1) works not in a real sheet, only in 'standard' ...&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
      <guid>101628</guid>
      <pubDate>Sat, 12 Feb 2011 02:17:05 Z</pubDate>
      <itunes:author>Axel Vogt</itunes:author>
      <author>Axel Vogt</author>
    </item>
    <item>
      <title>brackets</title>
      <link>http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic?ref=Feed:MaplePrimes:Gems from the Little Red Book of Maple Magic:Comments#comment101630</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/maplesoftblog/101548-Gems-From-The-Little-Red-Book-Of-Maple-Magic#comment101627"&gt;@pagan&lt;/a&gt; I have not interpreted as the brackets being the issue, but if so, in typeMK I would use &lt;strong&gt;msup&lt;/strong&gt;:&lt;/p&gt;
&lt;pre&gt;plot(x, x=0..1, legend = typeset(`#msup(mi("f"),mn("&amp;amp;minus;1")`(x)), color=black);
&lt;/pre&gt;</itunes:summary>
      <description>The latest comments added to the Blog Entry, Gems from the Little Red Book of Maple Magic</description>
      <guid>101630</guid>
      <pubDate>Sat, 12 Feb 2011 04:26:01 Z</pubDate>
      <itunes:author>Alejandro Jakubi</itunes:author>
      <author>Alejandro Jakubi</author>
    </item>
  </channel>
</rss>