de-CH
utf-8
math math-format
Kartesische Koordinaten ablesen
komplex-01-01b
multiple
272
randRange( -8, 8 ) randRangeExclude( -8, 8, [ REAL ] ) complexNumber( REAL, IMAG )

Bestimmen Sie die Komplexen Zahl z= {\color{orange}x} + {\color{blue}y} \cdot i :

graphInit({ range: [[-10, 10], [-10, 10]], scale: 20, tickStep: 2, labelStep: 1, }); label( [10, 0.5], "\\operatorname{Re}", "left" ); label( [0.5, 9.5], "\\operatorname{Im}", "right" ); label( [REAL, IMAG], "\\large z", "left" ); circle( [REAL, IMAG], 3 / 15, { fill: KhanUtil.BLACK, stroke: "none" });
x \color{orange}x = REAL
y \color{blue}y = IMAG

Es sind \color{orange}x der Realteil = \color{orange}x-Koordinate einer Komplexen Zahl z= {\color{orange}x} + {\color{blue}y} \cdot i , und \color{blue}y der Imaginärteil ist die \color{blue}y-Koordinate.

path([ [0,0], [REAL, 0]], { stroke: ORANGE, strokeWidth: 5.2 }); path([ [0,0], [0, IMAG]], { stroke: BLUE, strokeWidth: 5.2 });

Also hier \color{orange}x = \operatorname{Re}(z) = \Re(z) = REAL und \color{blue}y = \operatorname{Im}(z) = \Im(z) = IMAG.