Affine normalform of parabola

From JSXGraph Wiki
Revision as of 19:48, 6 June 2021 by A WASSERMANN (talk | contribs)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The underlying JavaScript code

JXG.Options.label.autoPosition = true;
JXG.Options.text.fontSize = 16;
JXG.Options.line.strokeWidth = 1;

var board = JXG.JSXGraph.initBoard('jxgbox', { boundingbox: [-2, 5, 8, -5], axis: true});

var a = board.create('slider', [[3,4],  [6,4],   [-4, 2, 4]], {name: 'a'});
var b = board.create('slider', [[3,3.5],[6,3.5], [-4, 1, 4]], {name: 'b'});
var c = board.create('slider', [[3,3],  [6,3],   [-4, 1, 4]], {name: 'c'});
var d = board.create('slider', [[3,2.5],[6,2.5], [-4, -1, 4]], {name: 'd'});

var Q3 = board.create('functiongraph', ['x^2']);
var x = board.create('glider', [2, 4, Q3], {name:'x', trace:true});
var t = board.create('point', [1, 0], {name:'t'});
board.create('arrow', [[0,0], t]);

var y = board.create('point', [
            () => a.Value() * x.X() + b.Value() * x.Y() + t.X(),
            () => c.Value() * x.X() + d.Value() * x.Y() + t.Y()
        ], {name: 'y', color:'orange', trace: true});