혹시 pdf expert 관련 강의도 있을까요~? 항상 감사드립니다.
1 Comment
Reaction
Comment
Share
함수?
---
<%* let name = tp.file.title;
let nametag = name.replace(/ /g,"");
let mobile = await tp.system.prompt("핸드폰 번호 입력:");
let email = await tp.system.prompt("이메일 주소:");
-%>
type: people
tags:
- <% nametag %>
- people
- people/<% nametag %>
aliases:
group: <% tp.system.suggester(["지인", "저자", "유명인"], ["acquaintance", "author", "influencer"]) %>
organization:
mobile: <% mobile %>
email: <% email %>
links:
index: "[[🏷 People]]"
---
두 벡터가 다음과 같이 주어진다고 할 때:
$$
\mathbf{a} = (a_1, a_2, \ldots, a_n), \quad \mathbf{b} = (b_1, b_2, \ldots, b_n)
$$
내적은 각 성분의 곱을 더한 값입니다.
$$
\mathbf{a} \cdot \mathbf{b} = a_1 b_1 + a_2 b_2 + \cdots + a_n b_n
$$
**예제)**
$$
\mathbf{a} = (1, 2, 3), \quad \mathbf{b} = (4, -5, 6)
$$
$$
\mathbf{a} \cdot \mathbf{b} = (1 \cdot 4) + (2 \cdot (-5)) + (3 \cdot 6) = 4 - 10 + 18 = 12
$$
---
### 2) 기하학적 정의
벡터의 크기(노름, $$\|\mathbf{a}\|$$)와 두 벡터 사이의 각도 $$\theta$$를 이용하면:
$$
\mathbf{a} \cdot \mathbf{b} = \|\mathbf{a}\| \, \|\mathbf{b}\| \cos \theta
$$
4
![[90. Settings/92. Attachments/6662a12e81273e70f4abe8bec5ce15bd_MD5.svg]]
2