<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, numeric solutions vector  for a trigonometric equation</title>
    <link>http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric</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 07:23:36 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 07:23:36 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, numeric solutions vector  for a trigonometric equation</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, numeric solutions vector  for a trigonometric equation</title>
      <link>http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric</link>
    </image>
    <item>
      <title>with(RootFinding)</title>
      <link>http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric?ref=Feed:MaplePrimes:numeric solutions vector  for a trigonometric equation:Comments#answer135283</link>
      <itunes:summary>&lt;p&gt;See ?&lt;a href="http://www.maplesoft.com/support/help/Maple/view.aspx?path=RootFinding/NextZero"&gt;RootFinding,NextZero&lt;/a&gt;&lt;br&gt;I take N=10 and suppose that you only want positive solutions.&lt;/p&gt;
&lt;pre&gt;restart; with(RootFinding):&lt;br&gt;eq1:=(8/x)=tan(7*x/50):&lt;br&gt;f := unapply( lhs(eq1)-rhs(eq1), x ):&lt;br&gt;X := Vector(10):&lt;br&gt;X[1] := NextZero(f,0): &lt;br&gt;for i from 2 to 10 do X[i] := NextZero(f, X[i-1] ) end do:&lt;/pre&gt;
&lt;p&gt;This gives you a vector X, containing the first ten solutions.&lt;br&gt;(By the way, of course the n'th solution X&lt;sub&gt;n&lt;/sub&gt; is &lt;strong&gt;not&lt;/strong&gt; X&lt;sub&gt;1&lt;/sub&gt; + n &amp;pi;.)&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;See ?&lt;a href="http://www.maplesoft.com/support/help/Maple/view.aspx?path=RootFinding/NextZero"&gt;RootFinding,NextZero&lt;/a&gt;&lt;br&gt;I take N=10 and suppose that you only want positive solutions.&lt;/p&gt;
&lt;pre&gt;restart; with(RootFinding):&lt;br&gt;eq1:=(8/x)=tan(7*x/50):&lt;br&gt;f := unapply( lhs(eq1)-rhs(eq1), x ):&lt;br&gt;X := Vector(10):&lt;br&gt;X[1] := NextZero(f,0): &lt;br&gt;for i from 2 to 10 do X[i] := NextZero(f, X[i-1] ) end do:&lt;/pre&gt;
&lt;p&gt;This gives you a vector X, containing the first ten solutions.&lt;br&gt;(By the way, of course the n'th solution X&lt;sub&gt;n&lt;/sub&gt; is &lt;strong&gt;not&lt;/strong&gt; X&lt;sub&gt;1&lt;/sub&gt; + n &amp;pi;.)&lt;/p&gt;</description>
      <guid>135283</guid>
      <pubDate>Wed, 20 Jun 2012 11:34:03 Z</pubDate>
      <itunes:author>Adri vanderMeer
 van der Meer</itunes:author>
      <author>Adri vanderMeer
 van der Meer</author>
    </item>
    <item>
      <title>Missed positive zero</title>
      <link>http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric?ref=Feed:MaplePrimes:numeric solutions vector  for a trigonometric equation:Comments#comment135306</link>
      <itunes:summary>&lt;p&gt;&amp;gt; fsolve(8/x=tan(7*x*(1/50)), x = 4 .. 9);&lt;br&gt;&lt;br&gt;&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; 6.400256151&lt;br&gt;PS. Your sequence begins from 24.67904374.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&amp;gt; fsolve(8/x=tan(7*x*(1/50)), x = 4 .. 9);&lt;br&gt;&lt;br&gt;&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; 6.400256151&lt;br&gt;PS. Your sequence begins from 24.67904374.&lt;/p&gt;</description>
      <guid>135306</guid>
      <pubDate>Thu, 21 Jun 2012 08:16:09 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
    <item>
      <title>Executed worksheet</title>
      <link>http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric?ref=Feed:MaplePrimes:numeric solutions vector  for a trigonometric equation:Comments#comment135313</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric#comment135306"&gt;@Markiyan Hirnyk&lt;/a&gt; This is Maple 14&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=135313/439047/Zeros.mw"&gt;Zeros.mw&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric#comment135306"&gt;@Markiyan Hirnyk&lt;/a&gt; This is Maple 14&lt;/p&gt;
&lt;p&gt;&lt;a href="/view.aspx?sf=135313/439047/Zeros.mw"&gt;Zeros.mw&lt;/a&gt;&lt;/p&gt;</description>
      <guid>135313</guid>
      <pubDate>Thu, 21 Jun 2012 11:37:41 Z</pubDate>
      <itunes:author>Adri vanderMeer
 van der Meer</itunes:author>
      <author>Adri vanderMeer
 van der Meer</author>
    </item>
    <item>
      <title>I see</title>
      <link>http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric?ref=Feed:MaplePrimes:numeric solutions vector  for a trigonometric equation:Comments#comment135315</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric#comment135313"&gt;@Adri vanderMeer van der Meer&lt;/a&gt; I didn't display X.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/135264-Numeric-Solutions-Vector--For-A-Trigonometric#comment135313"&gt;@Adri vanderMeer van der Meer&lt;/a&gt; I didn't display X.&lt;/p&gt;</description>
      <guid>135315</guid>
      <pubDate>Thu, 21 Jun 2012 12:14:17 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
  </channel>
</rss>