\( \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: Symmetrieachsen

randRange( 0, 1 ) randRange( 3, 8 ) randRange( 0, SIDES - 1 ) [$._("Ja"), $._("Nein")] SYM ? YES : NO

Ist die blaue Linie eine Symmetrieachse?

init({ range: [ [ -5, 5 ], [ -5, 5 ] ] }); graph.polygon = new RegularPolygon( [ 0, 0 ] , SIDES , 3 ); if ( SYM ){ graph.split = graph.polygon.drawLineOfSymmetry( SIDE ); } else { graph.split = graph.polygon.drawFakeLineOfSymmetry( SIDE ); }
ANSWER
  • YES
  • NO

Teilt die blaue Linie die Figur in zwei Teile, die so aussehen, als wären sie Reflektionen von einander?

Die orangefarbene Linie ist eine von zwei Teilen, die durch das Teilen entsteht.

graph.half = graph.polygon.splitPath( graph.split ).graphiePath;

Wenn die blaue Linie ein Spiegel wäre, wie würde das Spiegelbild aussehen?

Die pinkfarbene Linie ist die das Spiegelbild der orangefarbenen Linie.

var temp = []; var i = 0; for( i = 0; i != graph.half.length; i++ ){ temp.push( reflectPoint( graph.split.graphiePath, graph.half[ i ] ) ); } path( temp, { "stroke-width": 5, stroke: MatheguruHelper.PINK } )

Die blaue Linie teilt die Form in zwei gleiche Hälften, daher ist es eine Symmetrieachse.

Die blaue Linie teilt die Form nicht in zwei gleiche Hälften, und ist daher keine Symmetrieachse.