<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Real Numbers vs. Complex Numbers</title>
    <link>http://www.mapleprimes.com/questions/39965-Real-Numbers-Vs-Complex-Numbers</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 12:29:42 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 12:29:42 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Real Numbers vs. Complex Numbers</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Real Numbers vs. Complex Numbers</title>
      <link>http://www.mapleprimes.com/questions/39965-Real-Numbers-Vs-Complex-Numbers</link>
    </image>
    <item>
      <title>Real roots with complex expressions</title>
      <link>http://www.mapleprimes.com/questions/39965-Real-Numbers-Vs-Complex-Numbers?ref=Feed:MaplePrimes:Real Numbers vs. Complex Numbers:Comments#answer73311</link>
      <itunes:summary>&lt;p&gt;Actually, the results of solve here are all real numbers, but their expressions in terms of radicals use complex numbers.&amp;nbsp; This fact, discovered in the 16th century by Italian mathematicians (notably Cardano, Tartaglia and Bombelli), was actually the main reason for the development of complex numbers.&lt;/p&gt;
&lt;p&gt;If you want real expressions for your real roots, you can get them in terms of trig functions using &lt;b&gt;evalc&lt;/b&gt;:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; evalc([solve(x^3-6*x^2-7*x+58=0)]);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;maple&gt;[2/3*57^(1/2)*sin(1/3*arctan(1/126*4701^(1/2))+1/6*Pi)+2, -1/3*57^(1/2)*sin(1/3*arctan(1/126*4701^(1/2))+1/6*Pi)+2-1/3*3^(1/2)*57^(1/2)*sin(-1/3*arctan(1/126*4701^(1/2))+1/3*Pi), -1/3*57^(1/2)*sin(1/3*arctan(1/126*4701^(1/2))+1/6*Pi)+2+1/3*3^(1/2)*57^(1/2)*sin(-1/3*arctan(1/126*4701^(1/2))+1/3*Pi)]&lt;/maple&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Actually, the results of solve here are all real numbers, but their expressions in terms of radicals use complex numbers.&amp;nbsp; This fact, discovered in the 16th century by Italian mathematicians (notably Cardano, Tartaglia and Bombelli), was actually the main reason for the development of complex numbers.&lt;/p&gt;
&lt;p&gt;If you want real expressions for your real roots, you can get them in terms of trig functions using &lt;b&gt;evalc&lt;/b&gt;:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; evalc([solve(x^3-6*x^2-7*x+58=0)]);
&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;maple&gt;[2/3*57^(1/2)*sin(1/3*arctan(1/126*4701^(1/2))+1/6*Pi)+2, -1/3*57^(1/2)*sin(1/3*arctan(1/126*4701^(1/2))+1/6*Pi)+2-1/3*3^(1/2)*57^(1/2)*sin(-1/3*arctan(1/126*4701^(1/2))+1/3*Pi), -1/3*57^(1/2)*sin(1/3*arctan(1/126*4701^(1/2))+1/6*Pi)+2+1/3*3^(1/2)*57^(1/2)*sin(-1/3*arctan(1/126*4701^(1/2))+1/3*Pi)]&lt;/maple&gt;&lt;/p&gt;</description>
      <guid>73311</guid>
      <pubDate>Thu, 21 Feb 2008 22:50:51 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>real complex root!</title>
      <link>http://www.mapleprimes.com/questions/39965-Real-Numbers-Vs-Complex-Numbers?ref=Feed:MaplePrimes:Real Numbers vs. Complex Numbers:Comments#answer73309</link>
      <itunes:summary>&lt;p&gt;This is very interesting.&amp;nbsp; If you do solve(x^3-6*x^2-7*x+58 = 0);, you obtain square root of a complex number.&amp;nbsp; I decided to take part by part the answer for the first root.&amp;nbsp; Of course, since I do an evalf, I am sure that they will be an approximation, not the right answer.&amp;nbsp; But as you can see, when I sum up part1+part2+2,&amp;nbsp; I get a real number (with 0. as imaginary part).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What I am wondering is why Maple cannot simplify that fact immediately?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;eq1 := (1/3)*(-378+(3*I)*sqrt(4701))^(1/3);&lt;/p&gt;
&lt;p&gt;evalc(eq1);&lt;/p&gt;
&lt;p&gt;part1 := evalf(%);&lt;/p&gt;
&lt;p&gt;eq2 := 19/(-378+(3*I)*sqrt(4701))^(1/3);&lt;/p&gt;
&lt;p&gt;evalc(eq2);&lt;/p&gt;
&lt;p&gt;part2 := evalf(%);&lt;/p&gt;
&lt;p&gt;tot := part1+part2+2;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mario Lemelin&lt;/p&gt;
&lt;p&gt;mario.lemelin@cgocable.ca&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;This is very interesting.&amp;nbsp; If you do solve(x^3-6*x^2-7*x+58 = 0);, you obtain square root of a complex number.&amp;nbsp; I decided to take part by part the answer for the first root.&amp;nbsp; Of course, since I do an evalf, I am sure that they will be an approximation, not the right answer.&amp;nbsp; But as you can see, when I sum up part1+part2+2,&amp;nbsp; I get a real number (with 0. as imaginary part).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What I am wondering is why Maple cannot simplify that fact immediately?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;eq1 := (1/3)*(-378+(3*I)*sqrt(4701))^(1/3);&lt;/p&gt;
&lt;p&gt;evalc(eq1);&lt;/p&gt;
&lt;p&gt;part1 := evalf(%);&lt;/p&gt;
&lt;p&gt;eq2 := 19/(-378+(3*I)*sqrt(4701))^(1/3);&lt;/p&gt;
&lt;p&gt;evalc(eq2);&lt;/p&gt;
&lt;p&gt;part2 := evalf(%);&lt;/p&gt;
&lt;p&gt;tot := part1+part2+2;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mario Lemelin&lt;/p&gt;
&lt;p&gt;mario.lemelin@cgocable.ca&lt;/p&gt;</description>
      <guid>73309</guid>
      <pubDate>Fri, 22 Feb 2008 03:14:18 Z</pubDate>
      <itunes:author>lemelinm</itunes:author>
      <author>lemelinm</author>
    </item>
    <item>
      <title>Maybe yes</title>
      <link>http://www.mapleprimes.com/questions/39965-Real-Numbers-Vs-Complex-Numbers?ref=Feed:MaplePrimes:Real Numbers vs. Complex Numbers:Comments#answer73300</link>
      <itunes:summary>&lt;p&gt;Yes I understsand your point.&amp;nbsp; But at least it should be done if I ask to simplify symbolic.&amp;nbsp; Instead I receive something even worst.&lt;/p&gt;
&lt;p&gt;But if I do a&amp;nbsp; plot in the region of the numerics solutions, I see that they will be 3 reals roots.&amp;nbsp; Is there a way to have the exact solution after knowingthat in a inexpensive way?&lt;/p&gt;
&lt;p&gt;plot(x^3-6*x^2-7*x+58, x = -4 .. 6);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mario Lemelin&lt;/p&gt;
&lt;p&gt;mario.lemelin@cgocable.ca&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Yes I understsand your point.&amp;nbsp; But at least it should be done if I ask to simplify symbolic.&amp;nbsp; Instead I receive something even worst.&lt;/p&gt;
&lt;p&gt;But if I do a&amp;nbsp; plot in the region of the numerics solutions, I see that they will be 3 reals roots.&amp;nbsp; Is there a way to have the exact solution after knowingthat in a inexpensive way?&lt;/p&gt;
&lt;p&gt;plot(x^3-6*x^2-7*x+58, x = -4 .. 6);&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mario Lemelin&lt;/p&gt;
&lt;p&gt;mario.lemelin@cgocable.ca&lt;/p&gt;</description>
      <guid>73300</guid>
      <pubDate>Fri, 22 Feb 2008 07:45:20 Z</pubDate>
      <itunes:author>lemelinm</itunes:author>
      <author>lemelinm</author>
    </item>
    <item>
      <title>to simplify or not to simplify</title>
      <link>http://www.mapleprimes.com/questions/39965-Real-Numbers-Vs-Complex-Numbers?ref=Feed:MaplePrimes:Real Numbers vs. Complex Numbers:Comments#comment84104</link>
      <itunes:summary>&lt;p&gt;If Maple always went to the expense of trying to do such simplifications then it would hurt the performance for anyone who didn't need or want it for a particular example.&lt;/p&gt;
&lt;p&gt;How would one go about turning that simplification off?&lt;/p&gt;
&lt;p&gt;And what if there were radicals in the coefficients of the cubic? It could become very expensive to try to determine whether the roots were purely real.&lt;/p&gt;
&lt;p&gt;Would drawing the line at, say, rational coefficients appear inconsistent?&lt;/p&gt;
&lt;p&gt;And what if one didn't want a result with trig in it, but wanted the explicit radicals only (when possible) from `solve`?&lt;/p&gt;
&lt;p&gt;It may be difficult to justify an automatic and potentially expensive simplification which might not always suit everyone.&lt;/p&gt;
&lt;p&gt;acer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;If Maple always went to the expense of trying to do such simplifications then it would hurt the performance for anyone who didn't need or want it for a particular example.&lt;/p&gt;
&lt;p&gt;How would one go about turning that simplification off?&lt;/p&gt;
&lt;p&gt;And what if there were radicals in the coefficients of the cubic? It could become very expensive to try to determine whether the roots were purely real.&lt;/p&gt;
&lt;p&gt;Would drawing the line at, say, rational coefficients appear inconsistent?&lt;/p&gt;
&lt;p&gt;And what if one didn't want a result with trig in it, but wanted the explicit radicals only (when possible) from `solve`?&lt;/p&gt;
&lt;p&gt;It may be difficult to justify an automatic and potentially expensive simplification which might not always suit everyone.&lt;/p&gt;
&lt;p&gt;acer&lt;/p&gt;</description>
      <guid>84104</guid>
      <pubDate>Fri, 22 Feb 2008 03:40:23 Z</pubDate>
      <itunes:author>acer</itunes:author>
      <author>acer</author>
    </item>
  </channel>
</rss>