Skip to content

Commit

Permalink
Modified vector section
Browse files Browse the repository at this point in the history
  • Loading branch information
hamukazu committed Aug 6, 2023
1 parent 2f1fcd6 commit 3a89e62
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tex/main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
decorations.pathreplacing,
decorations.pathmorphing,
decorations.text,
positioning,angles,quotes}
positioning,angles,quotes,
patterns}
\title{数学図案集}
\author{加藤公一 Kimikazu KATO}
\西
Expand Down
34 changes: 34 additions & 0 deletions tex/vector.tex
Original file line number Diff line number Diff line change
Expand Up @@ -210,3 +210,37 @@ \chapter{ベクトル}
\fill(R) circle[radius=1pt] node[below]{R};
\end{tikzpicture}
\end{figure}
\begin{figure}[!ht]\caption{外積}
\begin{tikzpicture}
\coordinate(O) at (0,0) node[left]{O};;
\coordinate(A) at (2,-1);
\coordinate(B) at (3,1);
\coordinate(C) at (0,5);
\coordinate(D) at ($(A)+(B)$);
\node[left] at (O) {O};
\draw[-Stealth] (O)--(A)node[midway,below]{$\bm{a}$}node[below]{A};
\draw[-Stealth] (O)--(B)node[midway,above]{$\bm{b}$}node[above]{B};
\draw[-Stealth] (O)--(C)node[midway,left]{$\bm{a}\times\bm{b}$};
\draw[dashed] (A)--(D)node[right]{D}--(B);
\fill[pattern=north west lines](O)--(A)--(D)--(B)--cycle;
\node[fill=white] at ($0.5*(D)$) {$\Vert \bm{a}\times\bm{b} \Vert$};
\end{tikzpicture}
\end{figure}
\begin{figure}[!ht]\caption{ベクトルの張る平行四辺形の面積}
\begin{tikzpicture}
\coordinate(O) at (0,0);
\coordinate(A) at (3,0);
\coordinate(B) at (1,2);
\coordinate(D) at ($(A)+(B)$);
\coordinate(H) at ($(O)!(B)!(A)$);
\coordinate(H1) at ($(H)!2mm!(O)!2mm!-90:(O)$);
\draw[-Stealth] (O)--(A)node[midway,below]{$\bm{a}$};
\draw[-Stealth] (O)--(B)node[midway,above left]{$\bm{b}$};
\draw [dashed] (B)--(H);
\draw (B)--(D)--(A);
\pic [draw, "$\theta$", angle radius=3mm, angle eccentricity=1.5]{angle=A--O--B};
\draw (H1)--($(O)!(H1)!(H)$);
\draw (H1)--($(B)!(H1)!(H)$);
\draw[decorate, decoration={brace, raise=4pt}](B)--(H)node[midway,right=6pt]{$\Vert \bm{b}\Vert\sin\theta$};
\end{tikzpicture}
\end{figure}

0 comments on commit 3a89e62

Please sign in to comment.