Difference between revisions of "Arithmetics of complex numbers"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
===Addition of complex numbers=== | ===Addition of complex numbers=== | ||
− | < | + | <jsxgraph box="box" width="600" height="400"> |
− | + | board = JXG.JSXGraph.initBoard('box', {boundingbox: [-6, 6, 8, -4], axis: true}); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | var org = board.create('point', [0,0], {style:10,visible:true,fixed:true,name:' '}); | |
− | + | var x = board.create('point', [2,2], {style:5,color:'blue',name:'x'}); | |
− | + | var y = board.create('point', [-1,-3], {style:5,color:'blue',name:'y'}); | |
− | + | var xy = board.create('point', | |
− | + | ["X(x) + X(y)", "Y(x) + Y(y)"], {style:7,color:'green',name:'x+y'}); | |
− | + | var ax =board.create('arrow', [org, x], {strokeColor:'blue'}); | |
− | + | var ay =board.create('arrow', [org, y], {strokeColor:'blue'}); | |
− | + | var axy =board.create('arrow', [org, xy], {strokeColor:'red'}); | |
− | + | var ax2 =board.create('arrow', [x, xy], {strokeColor:'blue',strokeWidth:1,dash:1}); | |
− | + | var ay2 =board.create('arrow', [y, xy], {strokeColor:'blue',strokeWidth:1,dash:1}); | |
− | + | </jsxgraph> | |
− | |||
− | </ | ||
===Multiplication of complex numbers=== | ===Multiplication of complex numbers=== | ||
− | < | + | <jsxgraph box="box2" width="600" height="400"> |
− | + | brd2 = JXG.JSXGraph.initBoard('box2', {boundingbox: [-6, 6, 8, -4], axis: true}); | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | var org2 = brd2.create('point', [0,0], {style:10,visible:true,fixed:true,name:' '}); | |
− | + | var x = brd2.create('point', [1,0], {style:4,color:'blue',name:'x'}); | |
− | + | var y = brd2.create('point', [0,2], {style:4,color:'red',strokeColor:'red',name:'y'}); | |
− | + | var xy = brd2.create('point', | |
− | + | ["X(x) * X(y) - Y(x) * Y(y)","X(x) * Y(y) + X(y) * Y(x)"], {style:7, fillColor:'green', strokeColor:'green', name:'x*y'}); | |
− | + | var c = brd2.create('circle',[org2,1],{strokeWidth:1,dash:1}); | |
− | </ | + | </jsxgraph> |
− | |||
Line 47: | Line 32: | ||
Addition: | Addition: | ||
<source lang="javascript"> | <source lang="javascript"> | ||
− | + | board = JXG.JSXGraph.initBoard('box', {boundingbox: [-6, 6, 8, -4], axis: true}); | |
− | |||
− | |||
− | |||
− | + | var org = board.create('point', [0,0], {style:10,visible:true,fixed:true,name:' '}); | |
− | + | var x = board.create('point', [2,2], {style:5,color:'blue',name:'x'}); | |
− | + | var y = board.create('point', [-1,-3], {style:5,color:'blue',name:'y'}); | |
− | + | var xy = board.create('point', | |
− | + | ["X(x) + X(y)", "Y(x) + Y(y)"], {style:7,color:'green',name:'x+y'}); | |
− | + | var ax =board.create('arrow', [org, x], {strokeColor:'blue'}); | |
− | + | var ay =board.create('arrow', [org, y], {strokeColor:'blue'}); | |
− | + | var axy =board.create('arrow', [org, xy], {strokeColor:'red'}); | |
− | + | var ax2 =board.create('arrow', [x, xy], {strokeColor:'blue',strokeWidth:1,dash:1}); | |
− | + | var ay2 =board.create('arrow', [y, xy], {strokeColor:'blue',strokeWidth:1,dash:1}); | |
</source> | </source> | ||
Line 67: | Line 49: | ||
<source lang="javascript"> | <source lang="javascript"> | ||
− | + | brd2 = JXG.JSXGraph.initBoard('box2', {boundingbox: [-6, 6, 8, -4], axis: true}); | |
− | |||
− | |||
− | |||
− | + | var org2 = brd2.create('point', [0,0], {style:10,visible:true,fixed:true,name:' '}); | |
− | + | var x = brd2.create('point', [1,0], {style:4,color:'blue',name:'x'}); | |
− | + | var y = brd2.create('point', [0,2], {style:4,color:'red',strokeColor:'red',name:'y'}); | |
− | + | var xy = brd2.create('point', | |
− | + | ["X(x) * X(y) - Y(x) * Y(y)","X(x) * Y(y) + X(y) * Y(x)"], {style:7, fillColor:'green', strokeColor:'green', name:'x*y'}); | |
− | + | var c = brd2.create('circle',[org2,1],{strokeWidth:1,dash:1}); | |
</source> | </source> | ||
Latest revision as of 11:51, 18 January 2021
Contents
Addition of complex numbers
Multiplication of complex numbers
The underlying JavaScript code
Addition:
board = JXG.JSXGraph.initBoard('box', {boundingbox: [-6, 6, 8, -4], axis: true});
var org = board.create('point', [0,0], {style:10,visible:true,fixed:true,name:' '});
var x = board.create('point', [2,2], {style:5,color:'blue',name:'x'});
var y = board.create('point', [-1,-3], {style:5,color:'blue',name:'y'});
var xy = board.create('point',
["X(x) + X(y)", "Y(x) + Y(y)"], {style:7,color:'green',name:'x+y'});
var ax =board.create('arrow', [org, x], {strokeColor:'blue'});
var ay =board.create('arrow', [org, y], {strokeColor:'blue'});
var axy =board.create('arrow', [org, xy], {strokeColor:'red'});
var ax2 =board.create('arrow', [x, xy], {strokeColor:'blue',strokeWidth:1,dash:1});
var ay2 =board.create('arrow', [y, xy], {strokeColor:'blue',strokeWidth:1,dash:1});
Multiplication:
brd2 = JXG.JSXGraph.initBoard('box2', {boundingbox: [-6, 6, 8, -4], axis: true});
var org2 = brd2.create('point', [0,0], {style:10,visible:true,fixed:true,name:' '});
var x = brd2.create('point', [1,0], {style:4,color:'blue',name:'x'});
var y = brd2.create('point', [0,2], {style:4,color:'red',strokeColor:'red',name:'y'});
var xy = brd2.create('point',
["X(x) * X(y) - Y(x) * Y(y)","X(x) * Y(y) + X(y) * Y(x)"], {style:7, fillColor:'green', strokeColor:'green', name:'x*y'});
var c = brd2.create('circle',[org2,1],{strokeWidth:1,dash:1});