Elliptic curves: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
| Line 6: | Line 6: | ||
<jsxgraph width="600" height="400" box="jxgbox"> | <jsxgraph width="600" height="400" box="jxgbox"> | ||
JXG.Options.axis.strokeColor = '#cccccc'; | JXG.Options.axis.strokeColor = '#cccccc'; | ||
const board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-15, 10, 15, -10], axis:true}); | (function() { | ||
var b = board.create('slider',[[1,-3],[10,-3],[-10,2.10,10]],{name:'a'}); | const board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-15, 10, 15, -10], axis:true}); | ||
var a = board.create('slider',[[1,-4],[10,-4],[-10,-9.52,10]],{name:'b'}); | var b = board.create('slider',[[1,-3],[10,-3],[-10,2.10,10]],{name:'a'}); | ||
var a = board.create('slider',[[1,-4],[10,-4],[-10,-9.52,10]],{name:'b'}); | |||
var c = board.create('implicitcurve', [(x, y) => x*x*x+a.Value()*x+b.Value() - y * y], | var c = board.create('implicitcurve', [(x, y) => x*x*x+a.Value()*x+b.Value() - y * y], | ||
{strokeWidth:3,strokeColor:'black'}); | {strokeWidth:3,strokeColor:'black'}); | ||
})(); | |||
</jsxgraph> | </jsxgraph> | ||
Revision as of 10:04, 8 July 2026
An elliptic curve can be written as a plane algebraic curve defined by an equation of the form
- [math]\displaystyle{ y^2=x^3+ax+b\,. }[/math]
Using `implicitcurve`
Using two function graphs
Use
- [math]\displaystyle{ y^2=x^3+ax+b \quad\Longrigrtarrow\quad y=\pm\sqrt{x^3+ax+b} }[/math]
This approach is somewhat outdated.
JXG.Options.axis.strokeColor = '#cccccc';
brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-15, 10, 15, -10], axis:true});
var b = brd.create('slider',[[1,-3],[10,-3],[-10,0,10]],{name:'a'});
var a = brd.create('slider',[[1,-4],[10,-4],[-10,0,10]],{name:'b'});
var c1 = brd.create('functiongraph', [function(x){ return Math.sqrt(x*x*x+a.Value()*x+b.Value()); }],
{strokeWidth:3,strokeColor:'black'});
var c2 = brd.create('functiongraph', [function(x){ return -Math.sqrt(x*x*x+a.Value()*x+b.Value()); }],
{strokeWidth:3,strokeColor:'black'});