Plotting k^2 in Mathematica - Output Not 1?

Click For Summary
SUMMARY

The discussion centers on the output of the Mathematica plotting function for the expression involving Jacobi elliptic functions. Specifically, the user queries why the output of the expression k^2 JacobiSN[t, k]^2 + JacobiDN[t, k]^2 does not yield a constant value of 1 as expected. Participants confirm that the output oscillates between 1 and 2 in Mathematica version 12.0.0.0, and clarify that the correct interpretation involves understanding the parameters of JacobiSN and JacobiDN, particularly that the second argument should be the modulus m, not k.

PREREQUISITES
  • Familiarity with Mathematica 12.0.0.0
  • Understanding of Jacobi elliptic functions
  • Knowledge of mathematical plotting in Mathematica
  • Concept of modulus in elliptic functions
NEXT STEPS
  • Review the properties of Jacobi elliptic functions in Mathematica
  • Study the addition theorems for JacobiSN and JacobiDN
  • Learn about the correct usage of parameters in elliptic functions
  • Explore the implications of scaling factors in mathematical plots
USEFUL FOR

Mathematics students, researchers using Mathematica, and anyone working with elliptic functions and their graphical representations.

member 428835
Can anyone confirm if the following in Mathematica gives an output that is not 1? I'm getting some sort of sinusoid, but I should get 1.

Code:
k = 2;
Plot[k^2 JacobiSN[t, k]^2 + JacobiDN[t, k]^2, {t, 0, 10}]

Thanks!
 
Physics news on Phys.org
joshmccraney said:
Can anyone confirm if the following in Mathematica gives an output that is not 1? I'm getting some sort of sinusoid, but I should get 1.

Code:
k = 2;
Plot[k^2 JacobiSN[t, k]^2 + JacobiDN[t, k]^2, {t, 0, 10}]

Thanks!
Yes, that oscillates between 1 and 2 (Mathematica 12.0.0.0).
 
I don't know if this helps, but

Code:
Plot[2 JacobiSN[t, k]^2 + JacobiDN[t, k]^2, {t, 0, 10}]

does appear to be 1 for all values of t while 4 JacobiSN[t, k]^2 + JacobiDN[t, k]^2 is not.

I noticed that by plotting the two functions separately and guessing the needed scale factor.
 
Bill Simpson said:
I don't know if this helps, but

Code:
Plot[2 JacobiSN[t, k]^2 + JacobiDN[t, k]^2, {t, 0, 10}]

does appear to be 1 for all values of t while 4 JacobiSN[t, k]^2 + JacobiDN[t, k]^2 is not.

I noticed that by plotting the two functions separately and guessing the needed scale factor.
Do you mean ##k^2## instead of 4?
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K