Skip to content

Commit 3a89e62

Browse files
committed
Modified vector section
1 parent 2f1fcd6 commit 3a89e62

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

tex/main.tex

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
decorations.pathreplacing,
1111
decorations.pathmorphing,
1212
decorations.text,
13-
positioning,angles,quotes}
13+
positioning,angles,quotes,
14+
patterns}
1415
\title{数学図案集}
1516
\author{加藤公一 Kimikazu KATO}
1617
\西

tex/vector.tex

+34
Original file line numberDiff line numberDiff line change
@@ -210,3 +210,37 @@ \chapter{ベクトル}
210210
\fill(R) circle[radius=1pt] node[below]{R};
211211
\end{tikzpicture}
212212
\end{figure}
213+
\begin{figure}[!ht]\caption{外積}
214+
\begin{tikzpicture}
215+
\coordinate(O) at (0,0) node[left]{O};;
216+
\coordinate(A) at (2,-1);
217+
\coordinate(B) at (3,1);
218+
\coordinate(C) at (0,5);
219+
\coordinate(D) at ($(A)+(B)$);
220+
\node[left] at (O) {O};
221+
\draw[-Stealth] (O)--(A)node[midway,below]{$\bm{a}$}node[below]{A};
222+
\draw[-Stealth] (O)--(B)node[midway,above]{$\bm{b}$}node[above]{B};
223+
\draw[-Stealth] (O)--(C)node[midway,left]{$\bm{a}\times\bm{b}$};
224+
\draw[dashed] (A)--(D)node[right]{D}--(B);
225+
\fill[pattern=north west lines](O)--(A)--(D)--(B)--cycle;
226+
\node[fill=white] at ($0.5*(D)$) {$\Vert \bm{a}\times\bm{b} \Vert$};
227+
\end{tikzpicture}
228+
\end{figure}
229+
\begin{figure}[!ht]\caption{ベクトルの張る平行四辺形の面積}
230+
\begin{tikzpicture}
231+
\coordinate(O) at (0,0);
232+
\coordinate(A) at (3,0);
233+
\coordinate(B) at (1,2);
234+
\coordinate(D) at ($(A)+(B)$);
235+
\coordinate(H) at ($(O)!(B)!(A)$);
236+
\coordinate(H1) at ($(H)!2mm!(O)!2mm!-90:(O)$);
237+
\draw[-Stealth] (O)--(A)node[midway,below]{$\bm{a}$};
238+
\draw[-Stealth] (O)--(B)node[midway,above left]{$\bm{b}$};
239+
\draw [dashed] (B)--(H);
240+
\draw (B)--(D)--(A);
241+
\pic [draw, "$\theta$", angle radius=3mm, angle eccentricity=1.5]{angle=A--O--B};
242+
\draw (H1)--($(O)!(H1)!(H)$);
243+
\draw (H1)--($(B)!(H1)!(H)$);
244+
\draw[decorate, decoration={brace, raise=4pt}](B)--(H)node[midway,right=6pt]{$\Vert \bm{b}\Vert\sin\theta$};
245+
\end{tikzpicture}
246+
\end{figure}

0 commit comments

Comments
 (0)