vault backup: 2023-04-24 18:45:56
This commit is contained in:
4
.obsidian/workspace.json
vendored
4
.obsidian/workspace.json
vendored
@@ -6,7 +6,7 @@
|
||||
{
|
||||
"id": "08ad9b53ade42d31",
|
||||
"type": "tabs",
|
||||
"dimension": 62.59025270758123,
|
||||
"dimension": 61.73857868020305,
|
||||
"children": [
|
||||
{
|
||||
"id": "829ecd06322baed5",
|
||||
@@ -62,7 +62,7 @@
|
||||
{
|
||||
"id": "47553fa673bb1eb6",
|
||||
"type": "tabs",
|
||||
"dimension": 37.40974729241877,
|
||||
"dimension": 38.26142131979696,
|
||||
"children": [
|
||||
{
|
||||
"id": "b2fab346c5df81de",
|
||||
|
||||
@@ -36,3 +36,53 @@ Zusammenfassend haben wir die Koordinaten von Vektor $x$ in der neuen Basis $p$,
|
||||
# 2
|
||||
|
||||
Vektor x kann in der Basis {a, b, c} wie folgt dargestellt werden: $$x = \alpha a + \beta b + \gamma c$$ Da wir die baryzentrischen Koordinaten haben: $$\alpha = -4, \beta = 2, \gamma = 3$$ und die Vektoren $$a = \begin{bmatrix} 1 \\ 1 \end{bmatrix}, b = \begin{bmatrix} 2 \\ \frac{3}{2} \end{bmatrix}, c = \begin{bmatrix} -1 \\ 1 \end{bmatrix}$$ Berechnen wir x: $$x = -4 \begin{bmatrix} 1 \\ 1 \end{bmatrix} + 2 \begin{bmatrix} 2 \\ \frac{3}{2} \end{bmatrix} + 3 \begin{bmatrix} -1 \\ 1 \end{bmatrix} = \begin{bmatrix} -6 \\ 0 \end{bmatrix}$$ Jetzt möchten wir x in der neuen Basis {p, q, v} ausdrücken: $$x = \alpha' p + \beta' q + \gamma' v$$ Mit den Vektoren $$p = \begin{bmatrix} 1 \\ 5 \end{bmatrix}, q = \begin{bmatrix} -4 \\ -7 \end{bmatrix}, v = \begin{bmatrix} -1 \\ 0 \end{bmatrix}$$ Wir haben 3 Gleichungen und 3 Unbekannte: $$-6 = \alpha' + (-4)\beta' + (-1)\gamma'$$ $$0 = 5\alpha' + (-7)\beta'$$ Da der Vektor x im $$\mathbb{R}^2$$ liegt, haben wir nur zwei Gleichungen zur Verfügung. Wir lösen das Gleichungssystem: $$ \begin{cases} -6 = \alpha' - 4\beta' - \gamma' \\ 0 = 5\alpha' - 7\beta' \end{cases} $$ Das Gleichungssystem hat die Lösung: $$\alpha' = -\frac{14}{3}, \beta' = -\frac{10}{3}, \gamma' = -\frac{16}{3}$$ Daher sind die Koordinaten von Vektor x bezüglich der neuen Basis {p, q, v}: $$x = -\frac{14}{3}p -\frac{10}{3}q -\frac{16}{3}v$$`
|
||||
# 3
|
||||
|
||||
Um die Zentralprojektion des Punktes Vektor x auf die durch die Vektoren a und b gegebene Projektionsebene zu finden, verwenden wir die Formel für die Zentralprojektion eines Punktes auf eine Ebene:
|
||||
|
||||
$$\textbf{p} = \textbf{x} + t(\textbf{c} - \textbf{x})$$
|
||||
|
||||
Dabei ist Vektor $$\textbf{p}$$ der Projektionspunkt auf der Ebene, Vektor $$\textbf{x}$$ der gegebene Punkt, Vektor $$\textbf{c}$$ das Projektionszentrum und $$t$$ ein Skalar, das noch berechnet werden muss.
|
||||
|
||||
Um $$t$$ zu berechnen, verwenden wir die Ebenengleichung:
|
||||
|
||||
$$(\textbf{p} - \textbf{a}) \cdot \textbf{n} = 0$$
|
||||
|
||||
Dabei ist Vektor $$\textbf{n}$$ der Normalenvektor der Ebene, der aus dem Kreuzprodukt von Vektor $$\textbf{a}$$ und Vektor $$\textbf{b}$$ berechnet wird:
|
||||
|
||||
$$\textbf{n} = \textbf{a} \times \textbf{b}$$
|
||||
|
||||
$$\textbf{n} = \begin{pmatrix} 0 \\ 1 \\ 2 \end{pmatrix} \times \begin{pmatrix} 1 \\ -1 \\ 0 \end{pmatrix} = \begin{pmatrix} 2 \\ 2 \\ -1 \end{pmatrix}$$
|
||||
|
||||
Jetzt setzen wir die Gleichung für Vektor $$\textbf{p}$$ in die Ebenengleichung ein:
|
||||
|
||||
$$((\textbf{x} + t(\textbf{c} - \textbf{x})) - \textbf{a}) \cdot \textbf{n} = 0$$
|
||||
|
||||
$$(\begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} + t(\begin{pmatrix} -1 \\ 2 \\ 1 \end{pmatrix} - \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}) - \begin{pmatrix} 0 \\ 1 \\ 2 \end{pmatrix}) \cdot \begin{pmatrix} 2 \\ 2 \\ -1 \end{pmatrix} = 0$$
|
||||
|
||||
Subtrahiere die Vektoren und multipliziere sie mit Vektor $$\textbf{n}$$:
|
||||
|
||||
$$(\begin{pmatrix} 1 \\ 1 \\ 1 \end{pmatrix} + t(\begin{pmatrix} -2 \\ 0 \\ -2 \end{pmatrix})) \cdot \begin{pmatrix} 2 \\ 2 \\ -1 \end{pmatrix} = 0$$
|
||||
|
||||
Nun berechnen wir das Skalarprodukt und lösen nach $$t$$ auf:
|
||||
|
||||
$$(1 - 2t) * 2 + (1) * 2 + (1 + 2t) * (-1) = 0$$
|
||||
$$2 - 4t + 2 - 1 - 2t = 0$$
|
||||
$$3 - 6t = 0$$
|
||||
|
||||
$$t = \frac{3}{6} = \frac{1}{2}$$
|
||||
|
||||
Jetzt setzen wir den Wert von $$t$$ in die Gleichung für Vektor $$\textbf{p}$$ ein:
|
||||
|
||||
$$\textbf{p} = \textbf{x} + \frac{1}{2} (\textbf{c} - \textbf{x})$$
|
||||
|
||||
$$\textbf{p} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} + \frac{1}{2} (\begin{pmatrix} -1 \\ 2 \\ 1 \end{pmatrix} - \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix})$$
|
||||
|
||||
$$\textbf{p} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} + \frac{1}{2} \begin{pmatrix} -2 \\ 0 \\ -2 \end{pmatrix}$$
|
||||
|
||||
$$\textbf{p} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} - \begin{pmatrix} 1 \\ 0 \\ 1 \end{pmatrix}$$
|
||||
|
||||
$$\textbf{p} = \begin{pmatrix} 0 \\ 2 \\ 2 \end{pmatrix}$$
|
||||
|
||||
Der gesuchte Punkt Vektor $$\textbf{p}$$ der Zentralprojektion des Punktes Vektor $$\textbf{x}$$ in die durch Vektor $$\textbf{a}$$ und Vektor $$\textbf{b}$$ gegebene Projektionsebene durch das Projektionszentrum Vektor $$\textbf{c}$$ ist $$\begin{pmatrix} 0 \\ 2 \\ 2 \end{pmatrix}^T$$
|
||||
|
||||
|
||||
Reference in New Issue
Block a user