de-CH
utf-8
math math-format graphie
Kreisförmige Verbindung zwischen zwei Punkten
ku-01-01
multiple
5712
randRangeNonZero(-10,10) randRangeExclude(-5,5,[X]) randRangeExclude(-5,5,[X,Y]) randRangeExclude(-5,5,[X,Y,P]) (X + P) / 2 (Y + Q) / 2 sqrt((P - X) ** 2 + (Q - Y) ** 2) / 2 formattedSquareRootOf(0.25*(P - X) ** 2 + 0.25*(Q - Y) ** 2) Math.atan2(Y - My, X - Mx) roundTo(2,ac)

Die Punkte \mathbf {\color{red}A} und \mathbf {\color{blue}B} liegen auf einer Durchmessergeraden.

Geben Sie eine Parametrisierung \gamma: [0,1] \to \mathbb R^2, \gamma(t) = { \color{teal}\begin{pmatrix} x(t) \\ y(t) \end{pmatrix}} der kreisförmige Verbindung von \mathbf {\color{red}A} zu \mathbf {\color{blue}B} an.

Hinweis: Verwenden Sie \arctan \left(fractionReduce(Y - My, X - Mx)\right) \approx rac.

style({ stroke: "black", strokeWidth: 2 }); graphInit({ range: [[-11, 11], [-9, 9]], scale: [22, 22], axisArrows: "->", tickStep: 2, labelStep: 1 }); arc([Mx,My], r, Math.atan2(Y - My, X - Mx) * (180 / Math.PI) , Math.atan2(Q - My, P - Mx) * (180 / Math.PI)); // Punkte circle([X, Y], 0.15, { fill: "red" }); label( [X, Y], "{\\small \\color{red}\\mathbf A}", "right" ); circle([P, Q], 0.15, { fill: "blue" }); label( [P, Q], "{\\small \\color{blue}\\mathbf B}", "right" );

{\color{teal}x(t)}\approx Mx + r \cdot \cos(\pi t +rac)
{\color{teal}y(t)}\approx My + r \cdot \sin(\pi t+rac)

Der Punkt \mathbf {\color{red}A} hat die Koordinaten {\color{red}(X,Y)}, der Punkt \mathbf {\color{blue}B} ist {\color{blue} (P,Q)}.

Der Mittelpunkt \mathbf {\color{purple}M} der Kreisverbindung liegt bei:

{\color{purple}{\mathbf M} = \left( \dfrac{X+P}{2}, \dfrac{Y+Q}{2} \right) = \left( fractionReduce(X+P,2), fractionReduce(Y+Q,2) \right)}.

label( [Mx, My], "{\\footnotesize \\color{purple}\\mathbf M}", "above" ); circle([Mx, My], 0.15, { fill: "purple" }); line( [Mx, My], [X, Y], { stroke: BLACK} ); label( [(Mx +X)/2, (My +Y)/2], "{\\footnotesize \\color{black} R}", "below");

Der Radius ist R = fR .

Sei \alpha der Winkel, den die Strecke von A nach B mit der x-Achse einschliesst.

Dieser ergibt sich als \alpha = \arctan \left(\dfrac{Q-Y}{P-X}\right) = \arctan \left(fractionReduce(Y - My, X - Mx)\right) \approx rac.

Der Winkel \alpha sorgt dafür, dass der Halbkreis richtig orientiert ist und genau von Punkt A nach Punkt B verläuft.

Eine Parametrisierung für den Kreisbogen lautet mit I = [0,1] dann

\gamma: [0,1] \to \mathbb R^2, \gamma(t) \approx { \color{purple}\begin{pmatrix} fractionReduce(X+P,2,small=true) \\ fractionReduce(Y+Q,2, small=true) \end{pmatrix} }+ fR \cdot { \color{teal}\begin{pmatrix} \cos(\pi t +rac ) \\ \sin(\pi t +rac) \end{pmatrix} }.

Damit sind

x(t) \approx {\color{teal}fractionReduce(X+P,2,small=true) + fR \cdot \cos(\pi t +rac)} und y(t) \approx {\color{teal}fractionReduce(Y+Q,2,small=true) + fR \cdot \sin(\pi t +rac)}.