dh_0e

[과제] 삼각함수, 역삼각함수 (+티스토리 수식 넣는 법) 본문

내일배움캠프/특강

[과제] 삼각함수, 역삼각함수 (+티스토리 수식 넣는 법)

dh_0e 2024. 7. 1. 20:44

삼각함수 (Trigonometric Functions)

  • 삼각함수는 직각삼각형의 각도와 변의 길이 사이의 관계를 나타내는 함수이다.

사인 (sine, $sin$)

$\sin\theta=\frac{대변}{빗변}$

ex) $\sin30^{ \circ }$=$\frac{1}{2}$

 

코사인 (cosine, $cos$)

$\cos\theta=\frac{밑변}{빗변}$

ex) $\cos60^{ \circ }$=$\frac{1}{2}$

 

탄젠트 (tangent, $tan$)

$\tan\theta=\frac{대변}{밑변}$

ex) $\tan45^{ \circ }$=1

삼각함수표

  0 º 30 º 45 º 60 º 90 º
$sin$ 0 $\frac{1}{2}$ $\frac{\sqrt{2}}{2}$ $\frac{\sqrt{3}}{2}$ 1
$cos$ 1 $\frac{\sqrt{3}}{2}$ $\frac{\sqrt{2}}{2}$ $\frac{1}{2}$ 0
$tan$ 0 $\frac{1}{\sqrt{3}}$ 1 $\sqrt{3}$

 

 

역삼각함수 (Inverse Trigonometric Functions)

  • 역삼각함수는 주어진 삼각함수의 값에서 각도를 구하는 함수이다.
  • 삼각함수의 반대 역할을 한다.

아크사인 (arcsine, $sin^{-1}$ or $asin$)

  $\theta =   sin^{-1}x$

($-1<x<1$,  $-\frac{\pi }{2}<\theta< \frac{\pi }{2}$)

ex) $\theta$ 값이 0.5일 경우, $x$ 값은 30 º

 

아크코사인 (arccosine, $cos^{-1}$ or $acos$)

  $\theta =   cos^{-1}x$

($-1<x<1$,  $0<\theta<\pi$)

ex)  $\theta$  값이 0.5일 경우, $x$ 값은 60 º

 

아크탄젠트 (arctangent, $tan^{-1}$ or $atan$)

  $\theta =   tan^{-1}x$

(x는 모든 실수,  $-\frac{\pi }{2}<\theta< \frac{\pi }{2}$ )

ex)  $\theta$ 값이 1일 경우, $x$ 값은 45 º

 


 

티스토리 수식 넣는 법

1. 티스토리 블로그 스킨 html 편집

  • "블로그 관리 페이지" →  "꾸미기" → "스킨 편집" → "html 편집" → "html"에 들어가 <head>에 다음과 같은 코드를 추가해준다.
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
  tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML"></script>

 

 

2. 다음 사이트에서 수식을 html 코드로 변환한다.

 

Equation Editor for online mathematics - create, integrate and download

Download svg gif png pdf emf 5 pt 9 pt 10 pt 12 pt 18 pt 20 pt 50 80 100 110 120 150 200 300 Transparent White Black Red Green Blue Inline Block WordPress phpBB Tiny Wiki url url encoded xml pre doxygen html latex Formatted string containing your Equation

editor.codecogs.com

 

3. 변환한 코드를 $\$$ 사이에 넣어 입력해준다. ( $\$$ 변환된 코드 $\$$)

ex)

식은 다음과 같다: $\theta =   sin^{-1}x$

이는 다음과 같이 포스팅된다. >> "식은 다음과 같다: $\theta =   sin^{-1}x$"

 

 

※ 주의사항

  • 1에서 추가한 코드로 인해 $\$$를 사용할 때 폰트가 깨질 수 있어 $\$\$\$$로 입력해야 $\$$ 하나가 출력된다.
  • 실제로 위 3번을 작성할 때 필자는 다음과 같이 적었다.