<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, intersection point of two plots</title>
    <link>http://www.mapleprimes.com/questions/37080-Intersection-Point-Of-Two-Plots</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 05:19:11 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 05:19:11 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, intersection point of two plots</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, intersection point of two plots</title>
      <link>http://www.mapleprimes.com/questions/37080-Intersection-Point-Of-Two-Plots</link>
    </image>
    <item>
      <title>intersection point</title>
      <link>http://www.mapleprimes.com/questions/37080-Intersection-Point-Of-Two-Plots?ref=Feed:MaplePrimes:intersection point of two plots:Comments#answer65012</link>
      <itunes:summary>&lt;p&gt;Because you left out a multiplication sign, your d1 is interpreted as sec(I*(x^2-2)) (which is real-valued). Putting the multiplication sign in, you get an expression that is real only when x is a multiple of Pi.&lt;/p&gt;
&lt;p&gt;Now I'm not sure what you mean by &amp;quot;intersection point&amp;quot;.&amp;nbsp; Are you trying to solve d1 = d2?&amp;nbsp; That won't have any real solutions.&amp;nbsp;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Because you left out a multiplication sign, your d1 is interpreted as sec(I*(x^2-2)) (which is real-valued). Putting the multiplication sign in, you get an expression that is real only when x is a multiple of Pi.&lt;/p&gt;
&lt;p&gt;Now I'm not sure what you mean by &amp;quot;intersection point&amp;quot;.&amp;nbsp; Are you trying to solve d1 = d2?&amp;nbsp; That won't have any real solutions.&amp;nbsp;&amp;nbsp;&lt;/p&gt;</description>
      <guid>65012</guid>
      <pubDate>Fri, 03 Jul 2009 21:14:55 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>Graphical intersection</title>
      <link>http://www.mapleprimes.com/questions/37080-Intersection-Point-Of-Two-Plots?ref=Feed:MaplePrimes:intersection point of two plots:Comments#answer65013</link>
      <itunes:summary>&lt;p&gt;I think he means what are the&amp;nbsp;points where the lines cross as viewed from the plot and how can it be calculated.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I think he means what are the&amp;nbsp;points where the lines cross as viewed from the plot and how can it be calculated.&lt;/p&gt;</description>
      <guid>65013</guid>
      <pubDate>Fri, 03 Jul 2009 21:40:47 Z</pubDate>
      <itunes:author>Christopher2222</itunes:author>
      <author>Christopher2222</author>
    </item>
    <item>
      <title>Following Robert Israel's</title>
      <link>http://www.mapleprimes.com/questions/37080-Intersection-Point-Of-Two-Plots?ref=Feed:MaplePrimes:intersection point of two plots:Comments#answer65014</link>
      <itunes:summary>Following Robert Israel's hints and suggestion about the &lt;em&gt;d1&lt;/em&gt; expression, we can see that the plot contains &lt;em&gt;d2&lt;/em&gt; only.
&lt;pre&gt;
&gt; restart;
&gt; d1 := sec(I*(x^2-2))*(exp(I*x)*sin(2*x)+cos(I*(2*x-3)));

                  / 2    \                                    
              sech\x  - 2/ (exp(I x) sin(2 x) + cosh(2 x - 3))

&gt; d2 := 1/2;
                                      1
                                      -
                                      2
&lt;/pre&gt;

&lt;code&gt;
&gt; plot([d1, d2], x = -5 .. 5);
Warning, unable to evaluate 1 of the 2 functions to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
&lt;/code&gt;

&lt;a href='http://www.mapleprimes.com/viewfile/3566'&gt;&lt;img src='http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/97_wrongcomplexplot.jpg&amp;width=300&amp;height=300'/&gt;&lt;/a&gt;&lt;/a&gt;

Note that you can look for the zeroes of &lt;em&gt;d1-d2&lt;/em&gt; thanks to the function &lt;b&gt;RootFinding:-Analytic&lt;/b&gt; and you can also get plot of the complex expression with &lt;b&gt;plots:-complexplot&lt;/b&gt;.

&lt;pre&gt;
&gt; RootFinding:-Analytic(d1-d2, x, re = -4 .. 4, im = -10 .. 10);

                 0.692769566066800 + 0.716998844038150 I, 

                   0.233941585379303 - 0.856174437455665 I, 

                   2.02176105726006 + 1.30134684099697 I

&gt; plots:-complexplot(d1, x = -10 .. 10);
&lt;/pre&gt;

&lt;a href='http://www.mapleprimes.com/viewfile/3567'&gt;&lt;img src='http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/97_goodcomplexplot.jpg&amp;width=300&amp;height=300'/&gt;&lt;/a&gt;&lt;/a&gt;

HTH,
-- Jean-Marc</itunes:summary>
      <description>Following Robert Israel's hints and suggestion about the &lt;em&gt;d1&lt;/em&gt; expression, we can see that the plot contains &lt;em&gt;d2&lt;/em&gt; only.
&lt;pre&gt;
&gt; restart;
&gt; d1 := sec(I*(x^2-2))*(exp(I*x)*sin(2*x)+cos(I*(2*x-3)));

                  / 2    \                                    
              sech\x  - 2/ (exp(I x) sin(2 x) + cosh(2 x - 3))

&gt; d2 := 1/2;
                                      1
                                      -
                                      2
&lt;/pre&gt;

&lt;code&gt;
&gt; plot([d1, d2], x = -5 .. 5);
Warning, unable to evaluate 1 of the 2 functions to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
&lt;/code&gt;

&lt;a href='http://www.mapleprimes.com/viewfile/3566'&gt;&lt;img src='http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/97_wrongcomplexplot.jpg&amp;width=300&amp;height=300'/&gt;&lt;/a&gt;&lt;/a&gt;

Note that you can look for the zeroes of &lt;em&gt;d1-d2&lt;/em&gt; thanks to the function &lt;b&gt;RootFinding:-Analytic&lt;/b&gt; and you can also get plot of the complex expression with &lt;b&gt;plots:-complexplot&lt;/b&gt;.

&lt;pre&gt;
&gt; RootFinding:-Analytic(d1-d2, x, re = -4 .. 4, im = -10 .. 10);

                 0.692769566066800 + 0.716998844038150 I, 

                   0.233941585379303 - 0.856174437455665 I, 

                   2.02176105726006 + 1.30134684099697 I

&gt; plots:-complexplot(d1, x = -10 .. 10);
&lt;/pre&gt;

&lt;a href='http://www.mapleprimes.com/viewfile/3567'&gt;&lt;img src='http://www.mapleprimes.com/scripts/image.php?image=http://www.mapleprimes.com/files/97_goodcomplexplot.jpg&amp;width=300&amp;height=300'/&gt;&lt;/a&gt;&lt;/a&gt;

HTH,
-- Jean-Marc</description>
      <guid>65014</guid>
      <pubDate>Sat, 04 Jul 2009 00:15:20 Z</pubDate>
      <itunes:author>gulliet</itunes:author>
      <author>gulliet</author>
    </item>
  </channel>
</rss>