Find the Order of an Elliptic CurveFind the rational points on $1 + 18 x + 81 x^2 + 44 x^3 = y^2$ with SageSage usage to calculate a cardinalityProblem with Elliptic Curve in Montgomery formElliptic curve Schoof algorithm, projective polynomial point coordinatesFind all points of finite order on the elliptic curve $y^2+7xy=x^3+16x$.How do you compute order of points in elliptic curve?Given order of two points, determining the number of points on an elliptic curveManually Finding Points Along Elliptic CurveCalculus of order in an elliptic curveWhy are zeroes of the elliptic curve (mod p) for integer values symmetrical about p/2
A reference to a well-known characterization of scattered compact spaces
What to put in ESTA if staying in US for a few days before going on to Canada
If human space travel is limited by the G force vulnerability, is there a way to counter G forces?
How to prevent "they're falling in love" trope
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Watching something be written to a file live with tail
Is there a hemisphere-neutral way of specifying a season?
Why does Kotter return in Welcome Back Kotter
Why does Arabsat 6A need a Falcon Heavy to launch
Is "remove commented out code" correct English?
Is it unprofessional to ask if a job posting on GlassDoor is real?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
Emailing HOD to enhance faculty application
Modeling an IP Address
I Accidentally Deleted a Stock Terminal Theme
Why do I get two different answers for this counting problem?
How can saying a song's name be a copyright violation?
Did Shadowfax go to Valinor?
Does a druid starting with a bow start with no arrows?
Western buddy movie with a supernatural twist where a woman turns into an eagle at the end
Were any external disk drives stacked vertically?
Stopping power of mountain vs road bike
Memorizing the Keyboard
Can I ask the recruiters in my resume to put the reason why I am rejected?
Find the Order of an Elliptic Curve
Find the rational points on $1 + 18 x + 81 x^2 + 44 x^3 = y^2$ with SageSage usage to calculate a cardinalityProblem with Elliptic Curve in Montgomery formElliptic curve Schoof algorithm, projective polynomial point coordinatesFind all points of finite order on the elliptic curve $y^2+7xy=x^3+16x$.How do you compute order of points in elliptic curve?Given order of two points, determining the number of points on an elliptic curveManually Finding Points Along Elliptic CurveCalculus of order in an elliptic curveWhy are zeroes of the elliptic curve (mod p) for integer values symmetrical about p/2
$begingroup$
I have an Elliptic Curve represented by the following equation and values:
Elliptic Curve: y^2 = x^3 + A*x + B mod M
M = 93556643250795678718734474880013829509320385402690660619699653921022012489089
A = 66001598144012865876674115570268990806314506711104521036747533612798434904785
B = 25255205054024371783896605039267101837972419055969636393425590261926131199030
What is the order of this Elliptic curve?
I thought it should be the same as the modulo, M?
In sage math, if I check the following, I get a different result:
F = FiniteField(M)
E = EllipticCurve(F, [A, B])
E.order() = 93556643250795678718734474880013829509196181230338248789325711173791286325820
However, the value of M is:
93556643250795678718734474880013829509320385402690660619699653921022012489089
These values look similar but they are not the same.
So, I want to know the following:
How is the order of the Elliptic Curve calculated?
How is it related to modulus? Since there is a similarity between the two values?
Thanks.
elliptic-curves sagemath
$endgroup$
add a comment |
$begingroup$
I have an Elliptic Curve represented by the following equation and values:
Elliptic Curve: y^2 = x^3 + A*x + B mod M
M = 93556643250795678718734474880013829509320385402690660619699653921022012489089
A = 66001598144012865876674115570268990806314506711104521036747533612798434904785
B = 25255205054024371783896605039267101837972419055969636393425590261926131199030
What is the order of this Elliptic curve?
I thought it should be the same as the modulo, M?
In sage math, if I check the following, I get a different result:
F = FiniteField(M)
E = EllipticCurve(F, [A, B])
E.order() = 93556643250795678718734474880013829509196181230338248789325711173791286325820
However, the value of M is:
93556643250795678718734474880013829509320385402690660619699653921022012489089
These values look similar but they are not the same.
So, I want to know the following:
How is the order of the Elliptic Curve calculated?
How is it related to modulus? Since there is a similarity between the two values?
Thanks.
elliptic-curves sagemath
$endgroup$
1
$begingroup$
The order of an elliptic curve is the number $N$ of points on it (including the "point at infinity"). If it is defined modulo $p$, then $|N-p-1|le2sqrt p$ (Hasse). I would expect Sage uses some form of Schoof's algorithm.
$endgroup$
– Lord Shark the Unknown
Mar 29 at 3:11
2
$begingroup$
The order of an elliptic curve over finite field need not be equal to the order of the field. It might be instructive to calculate the number of solutions mod p for the equation $y=x(x^2-1) pmod p$ for small values of $p= 5,7,11$ (they are all elliptic curves) and see for yourself. You can see Theorem 1.1, Ch. V in SIlverman's book "Arithmetic of Elliptic Curves".
$endgroup$
– P Vanchinathan
Mar 29 at 3:14
add a comment |
$begingroup$
I have an Elliptic Curve represented by the following equation and values:
Elliptic Curve: y^2 = x^3 + A*x + B mod M
M = 93556643250795678718734474880013829509320385402690660619699653921022012489089
A = 66001598144012865876674115570268990806314506711104521036747533612798434904785
B = 25255205054024371783896605039267101837972419055969636393425590261926131199030
What is the order of this Elliptic curve?
I thought it should be the same as the modulo, M?
In sage math, if I check the following, I get a different result:
F = FiniteField(M)
E = EllipticCurve(F, [A, B])
E.order() = 93556643250795678718734474880013829509196181230338248789325711173791286325820
However, the value of M is:
93556643250795678718734474880013829509320385402690660619699653921022012489089
These values look similar but they are not the same.
So, I want to know the following:
How is the order of the Elliptic Curve calculated?
How is it related to modulus? Since there is a similarity between the two values?
Thanks.
elliptic-curves sagemath
$endgroup$
I have an Elliptic Curve represented by the following equation and values:
Elliptic Curve: y^2 = x^3 + A*x + B mod M
M = 93556643250795678718734474880013829509320385402690660619699653921022012489089
A = 66001598144012865876674115570268990806314506711104521036747533612798434904785
B = 25255205054024371783896605039267101837972419055969636393425590261926131199030
What is the order of this Elliptic curve?
I thought it should be the same as the modulo, M?
In sage math, if I check the following, I get a different result:
F = FiniteField(M)
E = EllipticCurve(F, [A, B])
E.order() = 93556643250795678718734474880013829509196181230338248789325711173791286325820
However, the value of M is:
93556643250795678718734474880013829509320385402690660619699653921022012489089
These values look similar but they are not the same.
So, I want to know the following:
How is the order of the Elliptic Curve calculated?
How is it related to modulus? Since there is a similarity between the two values?
Thanks.
elliptic-curves sagemath
elliptic-curves sagemath
asked Mar 29 at 3:01
Neon FlashNeon Flash
1012
1012
1
$begingroup$
The order of an elliptic curve is the number $N$ of points on it (including the "point at infinity"). If it is defined modulo $p$, then $|N-p-1|le2sqrt p$ (Hasse). I would expect Sage uses some form of Schoof's algorithm.
$endgroup$
– Lord Shark the Unknown
Mar 29 at 3:11
2
$begingroup$
The order of an elliptic curve over finite field need not be equal to the order of the field. It might be instructive to calculate the number of solutions mod p for the equation $y=x(x^2-1) pmod p$ for small values of $p= 5,7,11$ (they are all elliptic curves) and see for yourself. You can see Theorem 1.1, Ch. V in SIlverman's book "Arithmetic of Elliptic Curves".
$endgroup$
– P Vanchinathan
Mar 29 at 3:14
add a comment |
1
$begingroup$
The order of an elliptic curve is the number $N$ of points on it (including the "point at infinity"). If it is defined modulo $p$, then $|N-p-1|le2sqrt p$ (Hasse). I would expect Sage uses some form of Schoof's algorithm.
$endgroup$
– Lord Shark the Unknown
Mar 29 at 3:11
2
$begingroup$
The order of an elliptic curve over finite field need not be equal to the order of the field. It might be instructive to calculate the number of solutions mod p for the equation $y=x(x^2-1) pmod p$ for small values of $p= 5,7,11$ (they are all elliptic curves) and see for yourself. You can see Theorem 1.1, Ch. V in SIlverman's book "Arithmetic of Elliptic Curves".
$endgroup$
– P Vanchinathan
Mar 29 at 3:14
1
1
$begingroup$
The order of an elliptic curve is the number $N$ of points on it (including the "point at infinity"). If it is defined modulo $p$, then $|N-p-1|le2sqrt p$ (Hasse). I would expect Sage uses some form of Schoof's algorithm.
$endgroup$
– Lord Shark the Unknown
Mar 29 at 3:11
$begingroup$
The order of an elliptic curve is the number $N$ of points on it (including the "point at infinity"). If it is defined modulo $p$, then $|N-p-1|le2sqrt p$ (Hasse). I would expect Sage uses some form of Schoof's algorithm.
$endgroup$
– Lord Shark the Unknown
Mar 29 at 3:11
2
2
$begingroup$
The order of an elliptic curve over finite field need not be equal to the order of the field. It might be instructive to calculate the number of solutions mod p for the equation $y=x(x^2-1) pmod p$ for small values of $p= 5,7,11$ (they are all elliptic curves) and see for yourself. You can see Theorem 1.1, Ch. V in SIlverman's book "Arithmetic of Elliptic Curves".
$endgroup$
– P Vanchinathan
Mar 29 at 3:14
$begingroup$
The order of an elliptic curve over finite field need not be equal to the order of the field. It might be instructive to calculate the number of solutions mod p for the equation $y=x(x^2-1) pmod p$ for small values of $p= 5,7,11$ (they are all elliptic curves) and see for yourself. You can see Theorem 1.1, Ch. V in SIlverman's book "Arithmetic of Elliptic Curves".
$endgroup$
– P Vanchinathan
Mar 29 at 3:14
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3166688%2ffind-the-order-of-an-elliptic-curve%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3166688%2ffind-the-order-of-an-elliptic-curve%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
The order of an elliptic curve is the number $N$ of points on it (including the "point at infinity"). If it is defined modulo $p$, then $|N-p-1|le2sqrt p$ (Hasse). I would expect Sage uses some form of Schoof's algorithm.
$endgroup$
– Lord Shark the Unknown
Mar 29 at 3:11
2
$begingroup$
The order of an elliptic curve over finite field need not be equal to the order of the field. It might be instructive to calculate the number of solutions mod p for the equation $y=x(x^2-1) pmod p$ for small values of $p= 5,7,11$ (they are all elliptic curves) and see for yourself. You can see Theorem 1.1, Ch. V in SIlverman's book "Arithmetic of Elliptic Curves".
$endgroup$
– P Vanchinathan
Mar 29 at 3:14