<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Need help!</title>
    <link>http://www.mapleprimes.com/questions/42665-Need-Help</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sun, 14 Jun 2026 00:55:34 GMT</lastBuildDate>
    <pubDate>Sun, 14 Jun 2026 00:55:34 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Need help!</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Need help!</title>
      <link>http://www.mapleprimes.com/questions/42665-Need-Help</link>
    </image>
    <item>
      <title>Numerical Solution</title>
      <link>http://www.mapleprimes.com/questions/42665-Need-Help?ref=Feed:MaplePrimes:Need help!:Comments#answer79668</link>
      <itunes:summary>You can obtain a plot of the transform numerically, for some fixed value of 'k', as follows:

Since JacobiSN is O(1), you can choose to terminate the integration early and still get a reasonable precision, so if you want a precision of, say 1e-4 in the plot, you could do:

&lt;PRE&gt;
&gt; trf := s-&gt;evalf(Int(exp(-s*t)*JacobiSN(t,1/3),t=0..-ln(1e-4)/s)):
&gt; plot(trf,1/2..5);
  *                                                                           
0.8A                                                                          
  + A                                                                         
  +  A                                                                        
  +  AA                                                                       
  +    A                                                                      
0.6    AA                                                                     
  +      A                                                                    
  +       A                                                                   
  +        AA                                                                 
  +         AA                                                                
0.4           AA                                                              
  +            AAA                                                            
  +              AAA                                                          
  +                 AAA                                                       
  +                   AAAA                                                    
0.2                       AAAA                                                
  +                          AAAAAA                                           
  +                                AAAAAAAAA                                  
  +                                         AAAAAAAAAAAAAAAA                  
  +-+--+--+--+---+--+--+---+--+--+---+--+--+--+---+--+--+--****************** 
          1                2               3                4               5 
&gt; trf := s-&gt;evalf(Int(exp(-s*t)*JacobiSN(t,9/10),t=0..-ln(1e-4)/s)):
&gt; plot(trf,1/2..5);                                     
  *                                                                           
  *A                                                                          
1 +A                                                                          
  + A                                                                         
  + AA                                                                        
0.8  A                                                                        
  +   A                                                                       
  +    A                                                                      
  +     A                                                                     
0.6      A                                                                    
  +       A                                                                   
  +        AA                                                                 
  +         AA                                                                
0.4           AA                                                              
  +             AA                                                            
  +               AAA                                                         
  +                 AAAAA                                                     
0.2                     AAAAAA                                                
  +                           AAAAAAAA                                        
  +                                   AAAAAAAAAAAAAAAAA                       
  +-+--+--+--+---+--+--+---+--+--+---+--+--+--+---+--+-********************** 
          1                2               3                4               5 

&lt;/PRE&gt;</itunes:summary>
      <description>You can obtain a plot of the transform numerically, for some fixed value of 'k', as follows:

Since JacobiSN is O(1), you can choose to terminate the integration early and still get a reasonable precision, so if you want a precision of, say 1e-4 in the plot, you could do:

&lt;PRE&gt;
&gt; trf := s-&gt;evalf(Int(exp(-s*t)*JacobiSN(t,1/3),t=0..-ln(1e-4)/s)):
&gt; plot(trf,1/2..5);
  *                                                                           
0.8A                                                                          
  + A                                                                         
  +  A                                                                        
  +  AA                                                                       
  +    A                                                                      
0.6    AA                                                                     
  +      A                                                                    
  +       A                                                                   
  +        AA                                                                 
  +         AA                                                                
0.4           AA                                                              
  +            AAA                                                            
  +              AAA                                                          
  +                 AAA                                                       
  +                   AAAA                                                    
0.2                       AAAA                                                
  +                          AAAAAA                                           
  +                                AAAAAAAAA                                  
  +                                         AAAAAAAAAAAAAAAA                  
  +-+--+--+--+---+--+--+---+--+--+---+--+--+--+---+--+--+--****************** 
          1                2               3                4               5 
&gt; trf := s-&gt;evalf(Int(exp(-s*t)*JacobiSN(t,9/10),t=0..-ln(1e-4)/s)):
&gt; plot(trf,1/2..5);                                     
  *                                                                           
  *A                                                                          
1 +A                                                                          
  + A                                                                         
  + AA                                                                        
0.8  A                                                                        
  +   A                                                                       
  +    A                                                                      
  +     A                                                                     
0.6      A                                                                    
  +       A                                                                   
  +        AA                                                                 
  +         AA                                                                
0.4           AA                                                              
  +             AA                                                            
  +               AAA                                                         
  +                 AAAAA                                                     
0.2                     AAAAAA                                                
  +                           AAAAAAAA                                        
  +                                   AAAAAAAAAAAAAAAAA                       
  +-+--+--+--+---+--+--+---+--+--+---+--+--+--+---+--+-********************** 
          1                2               3                4               5 

&lt;/PRE&gt;</description>
      <guid>79668</guid>
      <pubDate>Tue, 15 Aug 2006 21:05:40 Z</pubDate>
      <itunes:author>Allan Wittkopf</itunes:author>
      <author>Allan Wittkopf</author>
    </item>
    <item>
      <title>Need help!</title>
      <link>http://www.mapleprimes.com/questions/42665-Need-Help?ref=Feed:MaplePrimes:Need help!:Comments#comment86412</link>
      <itunes:summary>Thanks Allan! You prompted to me several useful ideas. 
Jane.</itunes:summary>
      <description>Thanks Allan! You prompted to me several useful ideas. 
Jane.</description>
      <guid>86412</guid>
      <pubDate>Thu, 17 Aug 2006 01:16:07 Z</pubDate>
      <itunes:author>rudem</itunes:author>
      <author>rudem</author>
    </item>
  </channel>
</rss>