Skip to content

Commit

Permalink
fix >= <=
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Oct 18, 2023
1 parent 27e0071 commit 4217caf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
26 changes: 13 additions & 13 deletions assets/notes/algebra/algebra_2023.10.09.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Zestaw 1 zadanie 5
Korzystając z zas. indukcji udowodnij że:
dla dowolnego $n \in \mathbb{N}, n >= 4$ liczba diagonalnych
dla dowolnego $n \in \mathbb{N}, n \geq 4$ liczba diagonalnych
w n-koncie wypukłym jest niewiększa niż $\frac{1}{2} n(n-3)$

- utworzenie wzoru na liczbę diagonalnych
Expand All @@ -15,26 +15,26 @@ z tego wniosek, że liczba diagonalnych $d = n-3$
- sprawdzenie warunku dla ~ n = 4

$$
n-3 <= \frac{1}{2} n (n - 3)\\
n-3 \leq \frac{1}{2} n (n - 3)\\
dla ~ n = 4\\
1 <= 2 * 1
1 \leq 2 * 1
$$

- krok indukcyjny

$$
załóżmy, że: \\
\frac{1}{2}n (n-3) >= n-3 \\
n (n-3) >= 2n-6 \\
n^2 - 3n >= 2n-6 \\
n^2 - 5n + 6 >= 0 \\
\frac{1}{2}n (n-3) \geq n-3 \\
n (n-3) \geq 2n-6 \\
n^2 - 3n \geq 2n-6 \\
n^2 - 5n + 6 \geq 0 \\
wtedy~dla~n+1:\\
\frac{1}{2}(n+1)(n-2) >= n-2 \\
n^2-n-2 >= 2n-4 \\
n^2-3n+2 >= 0 \\
(n^2-5n+2) + (2n - 4) >= 0\\
\frac{1}{2}(n+1)(n-2) \geq n-2 \\
n^2-n-2 \geq 2n-4 \\
n^2-3n+2 \geq 0 \\
(n^2-5n+2) + (2n - 4) \geq 0\\
\begin{matrix}
(n^2-5n+2) & + & (2n - 4) & >= 0\\
z~ind~mat. & & \forall n >= 4 2n - 4 >=0 &
(n^2-5n+2) & + & (2n - 4) & \geq 0\\
z~ind~mat. & & \forall n \geq 4 2n - 4 \geq0 &
\end{matrix}
$$
3 changes: 2 additions & 1 deletion assets/notes/algebra/algebra_2023.10.17.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ $$
$$
(AB)^T = B^T A^T
$$
```

### Suma elementów na przekątnych

Expand All @@ -78,7 +79,7 @@ z których jedna jest symetryczna, a druga antysymetryczna
```{admonition} Definicja
wyznacznik to liczba $detA$ taka, że:
- dla n = 1 $detA = a_11$
- dla $n>=2$ $\sum_{j=1}^n (-1)^{i+j} * a_ij * detA_ij
- dla $n \geq 2$ $\sum_{j=1}^n (-1)^{i+j} * a_ij * detA_ij
gdzie $detA_ij$ to wyznacznik (tzw. minor) macierzy powstałej po skreśleniu i-ego wiersza i j-tej kolumny
```

Expand Down
4 changes: 2 additions & 2 deletions assets/notes/matematyka/matematyka_2023.10.15.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ $\bf{\forall W \in (m, M) \exists x \in (a, b)~f(x) = W}$
```

```{admonition} Twierdzenie o przyjmowaniu kresów
$f <a, b> \to \mathbb{R}$
f ciągła \\
f ciągła
- f jest ograniczona
```

0 comments on commit 4217caf

Please sign in to comment.