de-CH
utf-8
math math-format
Dreieck als ebenes Gebiet
int2-02-01
radio
56
randRange(1,8) randRangeExclude(1,8,[X])

Gegeben sei das Dreieck \color{orange}D. Welche Angabe gibt eine korrekte Beschreibung für{\orange{D}} \subset \mathbb R^2?



graphInit({ range: [[-2, 9],[-9, 9]], scale: [20,20], tickStep: [1,1], gridStep: [1,1], labelStep: [2,2], gridOpacity: 0.1, axisOpacity: 0.8, tickOpacity: 0.6, labelOpacity: 0.8 }); label( [ 0, 9.5 ], "y", "above" ); label( [9.5,0 ], "x", "right" ); line( [0, -Y], [0, Y], { stroke: ORANGE } ); line( [0,-Y], [X, 0], { stroke: ORANGE } ); line( [X,0], [0, Y], { stroke: ORANGE } )


{\orange{D}} = \left\{ (x,y) \, | \, 0 \leq x \leq X, \; fractionReduce(Y,X) x - Y \leq y \leq -fractionReduce(Y,X) x +Y\right\}

Wir schauen uns die zwei Geradenstücke an.

line( [0,-Y], [X, 0], { stroke: BLUE } ); line( [X,0], [0, Y], { stroke: RED } )

Diese liegen auf \color{red}f(x) = -fractionReduce(Y,X) x + Y und \color{blue}g(x) = fractionReduce(Y,X) x - Y.

Zwischen diesen sind die y - Werte erlaubt.