linalg2020/notes/berechnungen_wk11.md

238 lines
5.6 KiB
Markdown
Raw Normal View History

2021-01-20 15:32:17 +01:00
## §1. Linear oder nicht? ##
2021-01-21 10:45:03 +01:00
In folgenden Aufgaben wird eine Funktion φ : ℝ³ ⟶ ℝ² definiert.
Bestimme in jedem Falle, ob φ linear ist.
2021-01-20 15:32:17 +01:00
a)
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 4·x₁·x₃ )
( 10·x₂ )
2021-01-21 10:45:03 +01:00
Wenn φ linear wäre, dann müsste φ(2, 0, 2) = 2·φ(1, 0, 1) gelten.
Aber:
φ(2, 0, 2) = (16, 0)ᵀ
2·φ(1, 0, 1) = 2·(4, 0)ᵀ = (8, 0)ᵀ ≠ φ(2, 0, 2)
Also ist φ nicht linear, weil Homogenität verletzt wird.
2021-01-20 15:32:17 +01:00
b)
2021-01-21 10:45:03 +01:00
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( x₃² )
( 0 )
2021-01-20 15:32:17 +01:00
Wenn φ linear wäre, dann müsste φ(0, 0, 8) = 8·φ(0, 0, 1) gelten.
Aber:
2021-01-21 10:45:03 +01:00
φ(0, 0, 8) = (64, 0)ᵀ
8·φ(0, 0, 1) = 8·(1, 0)ᵀ = (8, 0)ᵀ ≠ φ(0, 0, 8)
2021-01-20 15:32:17 +01:00
Also ist φ nicht linear, weil Homogenität verletzt wird.
c)
2021-01-21 10:45:03 +01:00
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( x₃ )
2021-01-20 15:32:17 +01:00
( 0 )
2021-01-21 10:45:03 +01:00
--> linear
d)
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 0 )
2021-01-21 10:45:03 +01:00
( 0 )
--> linear
2021-01-20 15:32:17 +01:00
e)
2021-01-21 10:45:03 +01:00
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 4 )
2021-01-21 10:45:03 +01:00
( 0 )
2021-01-20 15:32:17 +01:00
Wenn φ linear wäre, dann müsste φ(0) = 0 gelten. [Siehe Lemma 6.1.2]
Aber φ ist hier niemals der Nullvektor!
Also ist φ nicht linear.
f)
2021-01-21 10:45:03 +01:00
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 10·x₃ )
( -x₂ + x₁ )
2021-01-20 15:32:17 +01:00
linear!
2021-01-21 10:45:03 +01:00
g)
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 1 - 10·x₃ )
( -x₂ + x₁ )
2021-01-20 15:32:17 +01:00
Wenn φ linear wäre, dann müsste φ(0) = 0 gelten. [Siehe Lemma 6.1.2]
2021-01-21 10:45:03 +01:00
Aber φ(0) = (1, 0)ᵀ.
2021-01-20 15:32:17 +01:00
Also ist φ nicht linear.
2021-01-21 10:45:03 +01:00
h)
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( exp(-(7·x₂ + 8·x₁)) )
2021-01-21 10:45:03 +01:00
( 0 )
2021-01-20 15:32:17 +01:00
Wenn φ linear wäre, dann müsste φ(0) = 0 gelten. [Siehe Lemma 6.1.2]
2021-01-21 10:45:03 +01:00
Aber φ(0) = (exp(0), 0)ᵀ = (1, 0)ᵀ.
2021-01-20 15:32:17 +01:00
Also ist φ nicht linear.
## §2. Aufgaben ähnlich zu ÜB 10-2 ##
2021-01-22 08:46:02 +01:00
Seien A = (u₁, u₂, u₃) und B = (v₁, v₂),
2021-01-20 15:32:17 +01:00
wobei
2021-01-22 08:46:02 +01:00
u₁ = (3, 0, 1)ᵀ
u₂ = (0, -1, 0)ᵀ
u₃ = (4, 0, 0)ᵀ
2021-01-20 15:32:17 +01:00
2021-01-22 08:46:02 +01:00
v₁ = (4, 5)ᵀ
v₂ = (0, 1)ᵀ
2021-01-20 15:32:17 +01:00
2021-01-21 10:45:03 +01:00
Beachte:
2021-01-20 15:32:17 +01:00
2021-01-21 10:45:03 +01:00
- A bildet eine Basis für ℝ³
- B bildet eine Basis für ℝ²
2021-01-20 15:32:17 +01:00
2021-01-21 10:45:03 +01:00
Sei nun φ : ℝ³ ⟶ ℝ² definiert durch
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 4·x₁ - x₃ )
( 10·x₂ + x₁ )
2021-01-20 15:32:17 +01:00
### Zur Linearität ###
Seien
2021-01-22 08:46:02 +01:00
(x₁,x₂,x₃), (x₁',x₂',x₃') ∈ ℝ³
2021-01-20 15:32:17 +01:00
c, c' ∈
**Zu zeigen:**
2021-01-22 08:46:02 +01:00
φ(c(x₁, x₂, x₃) +c'(x₁',x₂',x₃')) = c·φ(x₁, x₂, x₃) +c'·φ(x₁', x₂', x₃')
2021-01-20 15:32:17 +01:00
Es gilt
2021-01-22 08:46:02 +01:00
l. S. = φ(c(x₁, x₂, x₃) +c'(x₁',x₂',x₃'))
= φ(c(x₁·e1 + x₂·e2 + x₃·e3) +c'(x₁'·e1 + x₂'·e2 + x₃'·e3))
= φ((c·x₁ + c'·x₁)·e1 + (c·x₂ + c'·x₂)·e2 + (c·x₃ + c'·x₃)·e3)
= φ(c·x₁ + c'·x₁', c·x₂ + c'·x₂', c·x₃ + c'·x₃')
2021-01-21 10:45:03 +01:00
2021-01-22 08:46:02 +01:00
= ( 4·(c·x₁ + c'·x₁') - (c·x₃ + c'·x₃') )
( 10·(c·x₂ + c'·x₂') + (c·x₁ + c'·x₁') )
2021-01-20 15:32:17 +01:00
2021-01-22 08:46:02 +01:00
= ( c·(4·x₁ - x₃) + c'·(4·x₁' - x₃') )
( c·(10·x₂ + x₁) + c'·(10·x₂' + x₁') )
2021-01-20 15:32:17 +01:00
2021-01-22 08:46:02 +01:00
= c·( 4·x₁ - x₃ ) + c'·( 4·x₁' - x₃' )
( 10·x₂ + x₁ ) ( 10·x₂' + x₁' )
2021-01-20 15:32:17 +01:00
2021-01-21 10:45:03 +01:00
= r. S.
2021-01-20 15:32:17 +01:00
Darum ist φ linear.
### Darstellung ###
Zunächst beobachten wir:
2021-01-22 08:46:02 +01:00
φ(x₁, x₂, x₃) = ( 4 0 -1 ) ( x₁ )
( 1 10 0 ) ( x₂ )
( x₃ )
2021-01-20 15:32:17 +01:00
= C·x
= φ_C(x) siehe [Skript, Bsp 6.2.2],
wobei C die Matrix
C = ( 4 0 -1 )
( 1 10 0 )
ist.
**Bemerkung.** Den vorherigen Teil konnten wir hiermit viel einfacher machen:
Da φ_C linear ist (siehe [Skript, Bsp 6.2.2]), ist φ = φ_C linear.
_Zurück zur Berechnung der Darstellung..._
Die zu berechnende Matrix M := M_A^B(φ), ist diejenige, die erfüllt:
- ist x der Form x = ∑ α_j·u_j = (α_j) <--- als Vektor über Basis A
2021-01-21 10:45:03 +01:00
- und ist M·(α_j) = (β_i) für einen Vektor (β_i) ∈ ℝ²
2021-01-20 15:32:17 +01:00
- dann gilt φ(x) = y, wobei y = ∑ β_i·v_i
Zusammengefasst ist M genau die Matrix, für die gilt:
B·M·α = φ(A·α)
2021-01-21 10:45:03 +01:00
für alle α ∈ ℝ³. Da φ = φ_C, ist die äquivalent zu
2021-01-20 15:32:17 +01:00
B·M·α = C·A·α
Kurzgesagt: M_A^B(φ) = B^-1 · C · A.
Um dies zu bestimmen, wenden wir das Gaußverfahren
auf folgendes augmentiertes System an
( B | C·A )
und reduzieren die linke Hälfte auf die Identitätsmatrix.
Die resultierende Matrix in der rechten Hälfte wir dann M sein.
Es gilt
C·A = ( 4 0 -1 ) (3 0 4)
( 1 10 0 ) (0 -1 0)
(1 0 0)
= ( 11 0 16 )
( 3 -10 4 )
Also ist das augmentiere System
( B | C·A )
2021-01-21 10:45:03 +01:00
= ( 4 0 | 11 0 16 )
( 5 1 | 3 -10 4 )
Zeile2 <- 4*Zeile2 - 5*Zeile1
2021-01-20 15:32:17 +01:00
~> ( 4 0 | 11 0 16 )
( 0 4 | -43 -40 -64 )
Zeile1 <- Zeile1 : 4
Zeile2 <- Zeile2 : 4
~> ( 1 0 | 11/4 0 4 )
( 0 1 | -43/4 -10 -16 )
Darum gilt
M_A^B(φ) = ( 11/4 0 4 )
( -43/4 -10 -16 )
## §3. Lineare Fortsetzung von partiell definierten Funktionen ##
2021-01-22 08:46:02 +01:00
Sei φ : ℝ⁵ ⟶ ℝ³
2021-01-20 15:32:17 +01:00
2021-01-22 08:46:02 +01:00
Seien u₁, u₂, u₃, u₄, u₅ eine Basis für ℝ⁵.
Seien v₁, v₂, v₃ Vektoren in ℝ³.
2021-01-20 15:32:17 +01:00
Definiert werden
2021-01-22 08:46:02 +01:00
φ(u₁) = v₁, φ(u₂) = v₂, φ(u₄) = v₃
2021-01-20 15:32:17 +01:00
**Aufgabe:** Gibt es eine lineare Abbildung, die die o. s. Gleichungen erfüllen?
**Antwort:** Ja.
**Beweis:**
Setze
2021-01-22 08:46:02 +01:00
φ(u₃) := 0 (Nullvektor)
φ(u₅) := 0 (Nullvektor)
2021-01-20 15:32:17 +01:00
2021-01-22 08:46:02 +01:00
Da u₁, u₂, u₃, u₄, u₅ eine Basis ist,
können wir für beliebiges x ∈ ℝ⁵
2021-01-20 15:32:17 +01:00
φ(x) = ∑ c_i · φ(ui)
wobei c_1, c_2, .... die eindeutigen Werte im Körper sind,
so dass
x = ∑ c_i · ui
gilt.
Dann ist φ linear (zeige die Axiome!!).
**QED**