Difference between revisions of "The Multiplication Parabola"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
Line 6: | Line 6: | ||
var g = brd.createElement('line',[a,b],{straightFirst:false,straightLast:false}); | var g = brd.createElement('line',[a,b],{straightFirst:false,straightLast:false}); | ||
var p = brd.createElement('point',[function(){return 0.0;},function(){return -a.X()*b.X();}],{fixed:true}); | var p = brd.createElement('point',[function(){return 0.0;},function(){return -a.X()*b.X();}],{fixed:true}); | ||
+ | var t = brd.createElement('text',[1,7,function(){ return '-X(A)*X(B) = '+a.X().toFixed(2)+'*'+b.X().toFixed(2)+' = '+(-a.X()*b.X()).toFixed(2)+' = Y(C)';}]); | ||
</jsxgraph> | </jsxgraph> | ||
Revision as of 14:56, 19 June 2009
The underlying JavaScript code
</jsxgraph>