flashcards.tex 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. \documentclass[mycards,frame]{flashcards}
  2. \usepackage{amsmath,amssymb}% math symbols / fonts
  3. \usepackage[utf8]{inputenc} % this is needed for umlauts
  4. \usepackage[ngerman]{babel} % this is needed for umlauts
  5. \usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
  6. \usepackage{enumitem}
  7. \def\mdr{\ensuremath{\mathbb{R}}}
  8. \DeclareMathOperator{\Bild}{Bild}
  9. \begin{document}
  10. \begin{flashcard}{ Tangentialebene }
  11. { %In Vorlesung: 17.1
  12. Sei $S \subseteq \mdr^3$ eine reguläre Fläche, $s \in S$,
  13. $F: U \rightarrow V \cap S$ eine lokale Parametrisierung um $s$
  14. (d.~h. $s \in V$)
  15. \[(u,v) \mapsto (x(u,v), y(u,v), z(u,v))\]
  16. Für $p=F^{-1}(s) \in U$ sei
  17. \[ J_F(u,v) = \begin{pmatrix}
  18. \frac{\partial x}{\partial u} (p) & \frac{\partial x}{\partial v} (p)\\
  19. \frac{\partial y}{\partial u} (p) & \frac{\partial y}{\partial v} (p)\\
  20. \frac{\partial z}{\partial u} (p) & \frac{\partial z}{\partial v} (p)
  21. \end{pmatrix}\]
  22. und $D_P F: \mdr^2 \rightarrow \mdr^3$ die durch $J_F (p)$
  23. definierte lineare Abbildung.
  24. Dann heißt $T_s S := \Bild(D_p F)$ die \textbf{Tangentialebene}
  25. an $s \in S$.
  26. }
  27. \end{flashcard}
  28. \begin{flashcard}{ Normalenfeld\\Fläche, orientierbare }
  29. { %In Vorlesung: Def.+Bem 17.5
  30. \begin{enumerate}[label=\alph*)]
  31. \item Ein \textbf{Normalenfeld} auf der
  32. Fläche $S$ ist eine Abbildung $n: S \rightarrow S^2 \subseteq \mdr^3$
  33. mit $n(s) \in T_s S^\perp$ für jedes $s \in S$.
  34. \item $S$ heißt \textbf{orientierbar},
  35. wenn es ein stetiges Normalenfeld auf $S$ gibt.
  36. \end{enumerate}
  37. }
  38. \end{flashcard}
  39. \begin{flashcard}{ Normalenkrümmung }
  40. {
  41. In der Situation aus XY heißt die Krümmung $\kappa_\gamma(0)$
  42. der Kurve $\gamma$ in der Ebene $(s+ E)$ im Punkt $s$ die
  43. \textbf{Normalenkrümmung}\footnotemark von $S$ in $s$ in Richtung
  44. $x = \gamma'(0)$.
  45. Man scheibt: $\kappa_\gamma(0) := \kappa_{\text{Nor}}(s, x)$
  46. }
  47. \end{flashcard}
  48. \end{document}