Plot points of elliptic curve
up vote
0
down vote
favorite
I'm interested in plotting points of an elliptic curve over the real numbers. I'm looking to plot a few curves, but one like y^2 = x^3 + 7 would be an example of one. This is simple enough when x is positive, but when it's negative, I'm unsure how to find values. Are there any well-known algorithms for doing this?
elliptic-curves
add a comment |
up vote
0
down vote
favorite
I'm interested in plotting points of an elliptic curve over the real numbers. I'm looking to plot a few curves, but one like y^2 = x^3 + 7 would be an example of one. This is simple enough when x is positive, but when it's negative, I'm unsure how to find values. Are there any well-known algorithms for doing this?
elliptic-curves
If you have, say $x=-2$, then your equation reads $y^2=-1$. That doesn't have any solutions. Is that what you're asking about?
– Arthur
Nov 22 at 7:06
1
If you want points with real coordinates, it's simple enough to see when the right side is non negative, then for those $x$ a plus or minus squareroot gives the two $y values.
– coffeemath
Nov 22 at 7:07
1
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Nov 22 at 7:07
@Arthur right, that's true. I think what I'm struggling to wrap my head around is finding points of interest that do have solutions. For instance, how far back should I go before I know that there are no solutions anymore?
– babaloo
Nov 22 at 7:16
1
You get a real point when $x^3+7ge0$, that is iff $xge-sqrt[3]7$.
– Lord Shark the Unknown
Nov 22 at 7:16
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm interested in plotting points of an elliptic curve over the real numbers. I'm looking to plot a few curves, but one like y^2 = x^3 + 7 would be an example of one. This is simple enough when x is positive, but when it's negative, I'm unsure how to find values. Are there any well-known algorithms for doing this?
elliptic-curves
I'm interested in plotting points of an elliptic curve over the real numbers. I'm looking to plot a few curves, but one like y^2 = x^3 + 7 would be an example of one. This is simple enough when x is positive, but when it's negative, I'm unsure how to find values. Are there any well-known algorithms for doing this?
elliptic-curves
elliptic-curves
asked Nov 22 at 7:03
babaloo
1
1
If you have, say $x=-2$, then your equation reads $y^2=-1$. That doesn't have any solutions. Is that what you're asking about?
– Arthur
Nov 22 at 7:06
1
If you want points with real coordinates, it's simple enough to see when the right side is non negative, then for those $x$ a plus or minus squareroot gives the two $y values.
– coffeemath
Nov 22 at 7:07
1
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Nov 22 at 7:07
@Arthur right, that's true. I think what I'm struggling to wrap my head around is finding points of interest that do have solutions. For instance, how far back should I go before I know that there are no solutions anymore?
– babaloo
Nov 22 at 7:16
1
You get a real point when $x^3+7ge0$, that is iff $xge-sqrt[3]7$.
– Lord Shark the Unknown
Nov 22 at 7:16
add a comment |
If you have, say $x=-2$, then your equation reads $y^2=-1$. That doesn't have any solutions. Is that what you're asking about?
– Arthur
Nov 22 at 7:06
1
If you want points with real coordinates, it's simple enough to see when the right side is non negative, then for those $x$ a plus or minus squareroot gives the two $y values.
– coffeemath
Nov 22 at 7:07
1
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Nov 22 at 7:07
@Arthur right, that's true. I think what I'm struggling to wrap my head around is finding points of interest that do have solutions. For instance, how far back should I go before I know that there are no solutions anymore?
– babaloo
Nov 22 at 7:16
1
You get a real point when $x^3+7ge0$, that is iff $xge-sqrt[3]7$.
– Lord Shark the Unknown
Nov 22 at 7:16
If you have, say $x=-2$, then your equation reads $y^2=-1$. That doesn't have any solutions. Is that what you're asking about?
– Arthur
Nov 22 at 7:06
If you have, say $x=-2$, then your equation reads $y^2=-1$. That doesn't have any solutions. Is that what you're asking about?
– Arthur
Nov 22 at 7:06
1
1
If you want points with real coordinates, it's simple enough to see when the right side is non negative, then for those $x$ a plus or minus squareroot gives the two $y values.
– coffeemath
Nov 22 at 7:07
If you want points with real coordinates, it's simple enough to see when the right side is non negative, then for those $x$ a plus or minus squareroot gives the two $y values.
– coffeemath
Nov 22 at 7:07
1
1
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Nov 22 at 7:07
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Nov 22 at 7:07
@Arthur right, that's true. I think what I'm struggling to wrap my head around is finding points of interest that do have solutions. For instance, how far back should I go before I know that there are no solutions anymore?
– babaloo
Nov 22 at 7:16
@Arthur right, that's true. I think what I'm struggling to wrap my head around is finding points of interest that do have solutions. For instance, how far back should I go before I know that there are no solutions anymore?
– babaloo
Nov 22 at 7:16
1
1
You get a real point when $x^3+7ge0$, that is iff $xge-sqrt[3]7$.
– Lord Shark the Unknown
Nov 22 at 7:16
You get a real point when $x^3+7ge0$, that is iff $xge-sqrt[3]7$.
– Lord Shark the Unknown
Nov 22 at 7:16
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
Just plot the positive and negative roots:
add a comment |
up vote
0
down vote
Welcome to MSE! If you're familiar with programming, you can compute a list of points $(x,y)$ of the curve on your own. In view of the above curve, as Lord Shark said, real-valued points fulfill $xgeq -sqrt[3]{7}$. Just loop over values $x$ and compute the $y$-values. Its easy with a computer algebra system like Maple.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Just plot the positive and negative roots:
add a comment |
up vote
0
down vote
Just plot the positive and negative roots:
add a comment |
up vote
0
down vote
up vote
0
down vote
Just plot the positive and negative roots:
Just plot the positive and negative roots:
answered Nov 22 at 7:44
David G. Stork
9,22221232
9,22221232
add a comment |
add a comment |
up vote
0
down vote
Welcome to MSE! If you're familiar with programming, you can compute a list of points $(x,y)$ of the curve on your own. In view of the above curve, as Lord Shark said, real-valued points fulfill $xgeq -sqrt[3]{7}$. Just loop over values $x$ and compute the $y$-values. Its easy with a computer algebra system like Maple.
add a comment |
up vote
0
down vote
Welcome to MSE! If you're familiar with programming, you can compute a list of points $(x,y)$ of the curve on your own. In view of the above curve, as Lord Shark said, real-valued points fulfill $xgeq -sqrt[3]{7}$. Just loop over values $x$ and compute the $y$-values. Its easy with a computer algebra system like Maple.
add a comment |
up vote
0
down vote
up vote
0
down vote
Welcome to MSE! If you're familiar with programming, you can compute a list of points $(x,y)$ of the curve on your own. In view of the above curve, as Lord Shark said, real-valued points fulfill $xgeq -sqrt[3]{7}$. Just loop over values $x$ and compute the $y$-values. Its easy with a computer algebra system like Maple.
Welcome to MSE! If you're familiar with programming, you can compute a list of points $(x,y)$ of the curve on your own. In view of the above curve, as Lord Shark said, real-valued points fulfill $xgeq -sqrt[3]{7}$. Just loop over values $x$ and compute the $y$-values. Its easy with a computer algebra system like Maple.
answered Nov 23 at 18:07
Wuestenfux
2,6621410
2,6621410
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f3008829%2fplot-points-of-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
If you have, say $x=-2$, then your equation reads $y^2=-1$. That doesn't have any solutions. Is that what you're asking about?
– Arthur
Nov 22 at 7:06
1
If you want points with real coordinates, it's simple enough to see when the right side is non negative, then for those $x$ a plus or minus squareroot gives the two $y values.
– coffeemath
Nov 22 at 7:07
1
Welcome to MSE. For some basic information about writing mathematics at this site see, e.g., basic help on mathjax notation, mathjax tutorial and quick reference, main meta site math tutorial and equation editing how-to.
– José Carlos Santos
Nov 22 at 7:07
@Arthur right, that's true. I think what I'm struggling to wrap my head around is finding points of interest that do have solutions. For instance, how far back should I go before I know that there are no solutions anymore?
– babaloo
Nov 22 at 7:16
1
You get a real point when $x^3+7ge0$, that is iff $xge-sqrt[3]7$.
– Lord Shark the Unknown
Nov 22 at 7:16