\( \newcommand{\br}[1]{\left( #1\right)} \newcommand{\logpar}[1]{\log\left( #1\right)} \newcommand{\cospar}[1]{\cos\left( #1\right)} \newcommand{\sinpar}[1]{\sin\left( #1\right)} \newcommand{\tanpar}[1]{\tan\left( #1\right)} \newcommand{\arcsinpar}[1]{\sin^{-1}\!\left( #1\right)} \newcommand{\arccospar}[1]{\cos^{-1}\!\left( #1\right)} \newcommand{\arctanpar}[1]{\tan^{-1}\!\left( #1\right)} \newcommand{\asin}[1]{\sin^{-1}\! #1} \newcommand{\acos}[1]{\cos^{-1}\! #1} \newcommand{\atan}[1]{\tan^{-1}\! #1} \newcommand{\asinh}[1]{\sinh^{-1}\! #1} \newcommand{\acosh}[1]{\cosh^{-1}\! #1} \newcommand{\atanh}[1]{\tanh^{-1}\! #1} \newcommand{\logten}[1]{\log_{10}\! #1} \definecolor{explaination}{RGB}{0, 166, 226} \newcommand{\ubrace}[2][u]{ { \color{explaination}{\underbrace{ {\color{black}{#2}} }_{#1}} } } \newcommand{\obrace}[2][u]{ { \color{explaination}{\overbrace{ {\color{black}{#2}} }^{#1}} } } \definecolor{highlight}{RGB}{181, 41, 118} \newcommand{\xplain}[1]{{ \textcolor{explaination} { \footnotesize{ #1 \newline}}}} \newcommand{\hilite}[1]{{ \textcolor{highlight} { { #1 }}}} \definecolor{lightergray}{gray}{.675} \newcommand{\hide}[1]{{ \textcolor{lightergray} { \footnotesize{ #1 \newline}}}} \newcommand{\mth}[1]{ { \textcolor{black} { { \small #1 } } } } \)

Übung: Distributivgesetz #1

randRangeUnique( 2, 10, 3 ) A * ( B + C )

Benutze das Distributivgesetz um folgenden Ausdruck auszumultiplizieren:

A\cdot (B + C)

RESULT

Jede Zeile hat B + C = B+C Rechtecke und es gibt A Zeilen.

init({ range: [ [ 0, 1 ], [ 0, A ] ], scale: [ 180, 30 ] }); rectchart( [ B, C ], [ "#FFA500", "#6495ED" ], A - 1 ); for ( var i = 0; i < A - 1; i++ ) { rectchart( [ B, C ], [ "#FFCF22", "#85B7FF" ], i); }

Gezählt nach Farbe:

Anzahl an orangefarbenen Rechtecken: A \times B = A * B

Anzahl an blauen Rechtecken: A \times C = A* C

Gesamtzahl der Rechtecke: A * B + A * C = RESULT

Gezählt nach Zeile:

Anzahl der Zeilen: A

Anzahl der Rechtecke in einer Zeile: B + C = B + C

Gesamtzahl der Rechtecke: A \times B + C = RESULT

Beide Arten zu Zählen führen zum selben Ergebnis. Dies ist das Distributivgesetz.

(A \times B) + (A \times C) = A\times(B + C)

randRangeUnique( 2, 10, 3 ) NUMS A * ( B + C ) binop( 1 ) randRange( 0, 2 ) (function() { return $.map( NUMS, function( el, i ) { if ( i === SWAP_INDEX ) { return SYMBOL; } else { return el; } }); })() NUMS[ SWAP_INDEX ]

Welche Zahl könnte SYMBOL ersetzen (unter Verwendung des Diagramms)?

A\times(B + C) = ( SYM_A \times SYM_B ) + ( SYM_A \times SYM_C )

init({ range: [ [ 0, 1 ], [ 0, A ] ], scale: [ 180, 30 ] }); rectchart( [ B, C ], [ "#FFA500", "#6495ED" ], A - 1 ); for ( var i = 0; i < A - 1; i++ ) { rectchart( [ B, C ], [ "#FFCF22", "#85B7FF" ], i); }

Es gibt A Zeilen und jede Zeile hat B + C = B+C Rechtecke.

MISSING

Gezählt nach Farbe:

Anzahl an orangefarbenen Rechtecken: A \times B = A * B

Anzahl an blauen Rechtecken: A \times C = A* C

Gesamtzahl der Rechtecke: A * B + A * C = RESULT

Gezählt nach Zeile:

Anzahl der Zeilen: A

Anzahl der Rechtecke in einer Zeile: B + C = B + C

Gesamtzahl der Rechtecke: A \times B + C = RESULT

Beide Arten zu Zählen führen zum selben Ergebnis. Dies ist das Distributivgesetz.

(A \times B) + (A \times C) = A\times(B + C)

Daher könnte das Symbol SYMBOL durch MISSING ersetzt werden.