Questions tagged [elliptic-functions]

Questions on doubly periodic functions on the complex plane such as Jacobi and Weierstrass elliptic functions.

If $f:\mathbb{C} \to \mathbb{C}$ is elliptic, then there exists nonequal $t_0,t_1 \in \mathbb{C}$ such that $$ f(z) = f(z + t_0), f(z) = f(z + t_1) $$ the parallelogram $0,t_0,t_0+t_1,t_1$ is called the fundamental parallelogram of $f$. $f$'s value is entirely determined by its values on the fundamental parallelogram. By Liouville's theorem, any holomorphic elliptic function must be constant, so the usual elliptic functions are meromorphic. In fact, they must have at least two poles (with multiplicity) on the fundamental parallelogram.

564 questions
1
vote
1 answer

How can I identify whether a point is within an ellipse which is not orthogonal in orientation

I'm looking for an equation which will tell me whether or not a point in two-dimensional space, is located within an ellipse of known dimensions and orientation, and that is not orthogonal in nature.
Steve
  • 21
1
vote
1 answer

Inverse Elliptic function question

Let $\psi$ be an elliptic function with periodic lattice $\mathbb{Z}[\omega]= \mathbb{Z}\omega \oplus \mathbb{Z}$, a pole of order $2$ at $0$, and simple zeros at $\pm\dfrac{\omega-1}{3}$. Here $\omega= \exp(2 \pi i/3)$. Assume that…
Meow
  • 6,353
1
vote
0 answers

convert JacobiSN to JacobiDN identity

I have a Jacobi Elliptic sn function: \begin{equation} 0.9258200998{\it sn} \left( 0.7559289460\,It-{\it ns} \left( - 1.154700538,- 0.6123724359\,\sqrt {2} \right) ,- 0.6123724359\,\sqrt {2} \right) \end{equation} which is equivalent to…
zynga
  • 123
0
votes
1 answer

Proving the fundamental period of lemniscate sin and cos function is $\{(1+i)\varpi,(1-i)\varpi\}$

(I couldn't find many sources of the derivation on the internet, so I might as well show most of my work here) I started by using the Argument sum formulas (see this post), which require specific values of sl and cl. To find them, I started by…
Dqrksun
  • 442
0
votes
1 answer

Jacobian elliptic function argument

I have a C++ code that computes jacobian elliptic sn, cn and dn. void elipticjacobi(double u, double m, double * sn, double * cn, double * dn) { if(fabs(m) > 1.0) { *sn = 0.0; *cn = 0.0; *dn = 0.0; //error code …
ekato
  • 11
0
votes
0 answers

inverse Jacobi Elliptic Function with Complex arguments

I need to find the inverse of Jacobi Elliptic function that has a complex argument. I know how to calculate the Jacobi Elliptic function with complex input but I have not seen any formula or MATLAB/python functions that can calculate the inverse…
0
votes
1 answer

Number of Poles in a Period Parallelogram

The Weierstrass $\wp$ function has a double pole on every period. Its derivative $\wp'$ then has a triple pole on each period. Can I conclude that the quotient function $\dfrac{\wp'}{\wp}$ has a simple pole on each period? Is there any other poles…
1
2