I want to study the behavior of polynomials sitting in the co-ordinates of multiples of a rational point of an elliptic curve over $\mathbb{Q}, $ $E(\mathbb{Q}).$ Suppose if we take a point $P = (s,t) \in E(\mathbb{Q}).$ And then we take iteration the point $P$ like $nP , n \in \mathbb{Z}$. Then we will have $nP = (f_{n1}/g_{n1}, f_{n2}/g_{n2})$ where $f_{ni}, g_{ni}$ are polynomials in the variables $s,t$. I want to see those polynomials by using symbolic expression in sage. I tried declaring two symbolic variables $s,t$ but when I assigned the point $P = (s,t)$ error was shown. How to get those polynomials using SageMath?
2026-03-26 09:46:58.1774518418
Symbolic point in an elliptic curve over $\mathbb{Q}$ in SageMath
122 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in ELLIPTIC-CURVES
- Can we find $n$ Pythagorean triples with a common leg for any $n$?
- Solution of $X^5=5 Y (Y+1)+1$ in integers.
- Why does birational equivalence preserve group law in elliptic curves?
- CM elliptic curves and isogeny
- Elliptic Curve and Differential Form Determine Weierstrass Equation
- Difficulty understanding Hartshorne Theorem IV.4.11
- Elementary Elliptic Curves
- Flex points are invariant under isomorphism
- The Mordell equation $x^2 + 11 = y^3$.
- How do we know that reducing $E/K$ commutes with the addition law for $K$ local field
Related Questions in SAGEMATH
- Simultaneous diagonalization on more than two matrices
- Polynomial ring over finite field - inverting a polynomial non-prime
- Learn mathematical thinking with open source (SageMath, GeoGebra, ....)
- How can I find the dimension of an eigenspace?
- Why does the cube root of a polynomial in a finite field produce a different polynomial when re-cubed?
- What happens with subdivisions of normal fans in Sage?
- Software package for plotting 3-d splines
- in SAGE, how to convert a permutation into coxeter-generators (simple reflections)?
- simplify_full() for sage matrices
- Sage--use spkg coxeter3 in Sage notebook
Related Questions in SYMBOLIC-COMPUTATION
- Recommendation for math software?
- How the determine the number of real positive roots of a polynomial?
- Symbolic Math in a Computer Algebra System
- Simplify integral with random functions and their derivatives
- What is sigma symbols with reduce represent?
- Cube root of numbers such as $2+11i$
- Is there really analytic solution to cubic equation?
- How to solve multiple dependent differential equation?
- Is it possible to solve this equation symbolicaly with Mathematica/Mupad?
- Counting number of words of length $n$
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
If you were intent on making your approach work then in principle one could do the following. Let $E$ be the elliptic curve defined over $\mathbb{Q}(a,b)$ (i.e., specialising $a,b$ you get an elliptic curve over $\mathbb{Q}$) given by
$$f(x,y) = y^2 -( x^3 + ax + b) = 0$$
The idea is not to consider $E$ as an elliptic curve over $\mathbb{Q}(a,b)$, but instead as defining a curve over the function field $\mathbb{Q}(a,b)(E)$ (i.e., an elliptic curve with coefficients in $\mathbb{Q}(a,b)(E)$ with coefficients actually living in $\mathbb{Q}(a,b)$).
In this case $P = (s,t)$ is a generic point on $E$, and we can perform the usual manipulations. In Magma one could do this as
Note that computations will get expensive fast.
In practice it will be much easier to take the general point summation formulae and repeatedly apply them (if you want to get to large values of $n$, then you'll want to "double and add"). To do this, define some function field $\mathbb{Q}(a,b,s,t, s',t')$ (in Magma you'd do this with
FunctionField(Rationals(), 6), not sure what the syntax is in Sage) then define functions giving the numerator and denominators of $(s,t) + (s',t')$ and $2(s,t)$. By iteratively composing these you'll obtain the formulae you want.