지수함수 (exponential function)
$a>0$이고 $a\ne 0$이면서 $x$가 real number(실수)일 때,
다음의 function을 exponential function이라고 한다.
$$y=a^x$$
- $a$ : base (밑수, 밑)
- $x$ : exponent or power (지수)
- $a$ to the $x$th power, $a$ (raised) to the power of $x$로
즉, 지수가 unknown인 function이며, logarithmic function의 inverse function임.
대표적인 transcendental function이기도 함.
미분연산자 (Differentiation Operator)에 대해 eigenfunction임
때문에 linear differential equation에서 basis function으로 이용됨.
https://ds31x.blogspot.com/2023/08/math-exponential-vs-power.html
2023.08.13 - [.../Math] - [Math] log (logarithmic) function
Python의 numpy에서 power라는 함수 등으로 구현되어 제공됨.
import numpy as np
np.power(2,4)
같이 보면 좋은 URLs
https://ds31x.blogspot.com/2023/08/math-exponential-vs-power.html
2024.02.28 - [.../Math] - [Math] Derivatives of Exponential and Logarithmic Functions
2023.09.19 - [.../Signals and Systems] - [SS] Complex Exponential Signals
'... > Math' 카테고리의 다른 글
[Math] Inverse Function: Inverse vs. Reciprocal (0) | 2024.02.26 |
---|---|
[Math] Trigonometric Functions (1) | 2024.02.26 |
[Math] Function의 분류: 작성중 (1) | 2024.02.26 |
[Math] Polynomial Functions (다항함수) (0) | 2024.02.26 |
[Math] Relation (0) | 2024.02.25 |