aboutsummaryrefslogtreecommitdiffstats
path: root/komfour_zf.tex
blob: b9ed25343eba63fc13348100cc2a06e1fdc813ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
% !TeX program = xelatex
% !TeX encoding = utf8
% !TeX root = komfour_zf.tex

%% TODO: publish to CTAN
\documentclass[]{tex/hsrzf}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Packages

%% TODO: publish to CTAN
\usepackage{tex/hsrstud}

%% Language configuration
\usepackage{polyglossia}
\setdefaultlanguage[variant=swiss]{german}

%% Math
\usepackage{amsmath}
\usepackage{amsthm}

%% Layout
\usepackage{multicol}
\usepackage{enumitem}

%% License configuration
\usepackage[
  type={CC},
  modifier={by-nc-sa},
  version={4.0},
  lang={german},
]{doclicense}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Metadata

\course{Elektrotechnik}
\module{KomFour}
\semester{Fr\"uhlingssemester 2020}

\authoremail{npross@hsr.ch}
\author{Naoki Pross -- \texttt{\theauthoremail}}

\title{\texttt{\themodule} Zusammenfassung}
\date{\thesemester}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Macros and settings

%% Equal by definition
\newcommand\defeq{\overset{\mathrm{def.}}{=}}

%% number sets
\newcommand\Rset{\mathbb{R}}
\newcommand\Cset{\mathbb{C}}

%% Complex operators
\DeclareMathOperator\cjs{cjs}
\newcommand\cjsl[1]{\cos #1 + j\sin #1}

\newcommand\ej[1]{e^{j#1}}
\newcommand\conj[1]{\overline{j #1}}

\renewcommand\Re{Re}
\renewcommand\Im{Im}

%% Theorems
\newtheorem{theorem}{Satz}
\setlist[description]{%
  align=right, labelwidth=2cm, leftmargin=!, %
  format={\normalfont\slshape}}

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Document

\begin{document}

\maketitle
\tableofcontents

\section{Komplexe Zahlen}
\begin{theorem}[Komplexe Einheit]
\(
  j \defeq +\sqrt{-1} \iff j^2 = -1
\)
\end{theorem}
\begin{theorem}[Multiplikation] \(a, b \in \Cset\) \(\arg a = \phi, \arg b = \theta\)
\begin{description}
  \item[Kartesich] \(a \odot b = (a_1 b_1 - a_2 b_2) + j (a_1 b_2 + a_2 b_1)\)
  \item[Polar] \(a\odot b &= |a|\cdot|b|\exp{j(\phi + \theta)}\)
\end{description} 
\end{theorem}
\begin{theorem}[Division] \(a, b \in \Cset\) \(\arg a = \phi, \arg b = \theta\)
\begin{description}
  \item[Kartesich]
  \item[Polar] \(a / b &= |a|/|b|\exp{j(\phi - \theta)}\)
\end{description} 
\end{theorem}


\subsection{Algebra}
Seien \(a, b \in \Cset\) und \(a = a_1 + ja_2, a_1,a_2 \in \Rset\) und \"ahnlich f\"ur \(b\)
\begin{align*}
  a \oplus b &=  (a_1 + b_1) + j (a_2 + b_2) \\
\end{align*}

\subsection{Neue Operationen}
\subsection{Graphische Darstellung}
\subsubsection{Ebene Geometrie}

\section{Lizenz}
\doclicenseThis

\end{document}
% vim: set et ts=2 sw=2 spelllang=de spell wrap linebreak :