SciTech-Mathmatics-Real Space + Taylor Equation + Exponential Functions+Trigonometrical Functions + Complex Space + Euler's Equation
Derivative and Slope
Quick review: a \(derivative\) gives us the \(\text{slope of a function}\) at \(any\ point\).
These derivative rules can help us:
- The derivative of \(a\ constant\) is 0
- The derivative of \(a x\) is \(a\) (example: the derivative of \(2x\) is \(2\))
- The derivative of \(x^n\) is \(nx^{n-1}\) (example: \(\text{the derivative of }x^3\text{ is }3x^2\))
- We will use the little mark \(’\) to denote "\(\text{derivative of}\)" (example: \(f'(x)\) denote the \(\text{derivative of } f(x)\)).
\(Real\ Space\) and \(Taylor\ Series\):
- \(\large \text{First define } f^{(0)} (x) = f(x) \text{ and } 0! = 1\) :
- Formula:
\(\large \begin{array}{rll} \\
f(x) &=& \sum_{n=0}^{\infty}{\frac{f^{(n)}(x_0)}{n!} (x-x_0)^n} \\
&=& f(x_0) +\sum_{n=1}^{\infty}{\frac{f^{(n)}(x_0)}{n!} (x-x_0)^n} \\
\end{array}\) - Examples,\(Natural\ Exponential\ Functions\) and \(Trigonometrical\ Functions\):
\(\large \begin{array}{rll} \\
e^x &=& \sum_{n=0}^{\infty} {\frac{x^n}{n!}} \\
&=& 1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + \frac{x^4}{4!} + \frac{x^5}{5!} + \cdots + \frac{x^n}{n!} \\
\cos (x) &=& \sum_{n=0}^{\infty} {\frac{(-1)^{(n)}}{(2n)!} {x^{(2n)}} } \\
&=& 1 + \frac{(-1)x^{2}}{2!} + \frac{(+1)x^{4}}{4!} + \cdots + \frac{(-1)^{(n)}}{(2n)!} {x^{(2n)}} \\
\sin (x) &=& \sum_{n=0}^{\infty} {\frac{(-1)^{n}}{(2n+1)!} {x^{(2n+1)}} } \\
&=& x + \frac{(-1)x^{3}}{3!} + \frac{(+1)x^{5}}{5!} + \cdots + \frac{(-1)^{n}}{(2n+1)!} {x^{(2n+1)}} \\
\end{array}\)
\(Complex\ Space\) and \(Euler's\ Equation\):
Let $\large \ x=i \cdot y $ and \(\large i^2=-1\):
\(\large \begin{array}{rll} \\
e^x = e^{i \cdot y} &=& \sum_{n=0}^{\infty} {\frac{(i \cdot y)^n}{n!}} \\
&=& 1 + i \cdot y + \frac{-1 \cdot y^2}{2!} + i \cdot \frac{-1 \cdot y^3}{3!} + \frac{+1 \cdot y^4}{4!} + i \cdot \frac{+1 \cdot y^5}{5!} + \cdots + i^{n} \cdot \frac{(y^n}{n!} \\
&=& (1 + \frac{-1 \cdot y^2}{2!} + \frac{+1 \cdot y^4}{4!} + \cdots ) + i ( y + \frac{-1 \cdot y^3}{3!} + \frac{+1 \cdot y^5}{5!} + \cdots ) \\
&=& \cos y + i \sin y \\
\therefore e^{ix} &=& \cos x + i \sin x\ , \text{ Euler's Equation} \\
\end{array}\)
So $\large the\ Taylor's\ Equation,\ Euler's\ Equation \text{ are unified in }Complex\ Space \text{ with } the\ Trigonometry\ Functions, the\ Natural\ Number \text{ and } Exponential\ Functions $
SciTech-Mathmatics-Real Space + Taylor Equation + Exponential Functions+Trigonometrical Functions + Complex Space + Euler's Equation的更多相关文章
- The space of such functions is known as a reproducing kernel Hilbert space.
Reproducing kernel Hilbert space Mapping the points to a higher dimensional feature space http://www ...
- Kernel Functions for Machine Learning Applications
In recent years, Kernel methods have received major attention, particularly due to the increased pop ...
- Cognition math based on Factor Space (2016.05)
Cognition math based on Factor Space Wang P Z1, Ouyang H2, Zhong Y X3, He H C4 1Intelligence Enginee ...
- 上海交大课程MA430-偏微分方程续论(索伯列夫空间)之总结(Sobolev Space)
我们所用的是C.L.Evans "Partial Differential Equations" $\def\dashint{\mathop{\mathchoice{\,\rlap ...
- 5.24 Declaring Attributes of Functions【转】
转自:https://gcc.gnu.org/onlinedocs/gcc-4.0.0/gcc/Function-Attributes.html 5.24 Declaring Attributes o ...
- Part 11 string functions in sql server
Built in string functions in sql server 2008 LEFT, RIGHT, CHARINDEX and SUBSTRING functions in sql s ...
- [HIve - LanguageManual] Hive Operators and User-Defined Functions (UDFs)
Hive Operators and User-Defined Functions (UDFs) Hive Operators and User-Defined Functions (UDFs) Bu ...
- 理解滑动平均(exponential moving average)
1. 用滑动平均估计局部均值 滑动平均(exponential moving average),或者叫做指数加权平均(exponentially weighted moving average),可以 ...
- Cauchy sequence Hilbert space 希尔波特空间的柯西序列
http://mathworld.wolfram.com/HilbertSpace.html A Hilbert space is a vector space with an inner prod ...
- System and method for critical address space protection in a hypervisor environment
A system and method in one embodiment includes modules for detecting an access attempt to a critical ...
随机推荐
- JDK、tomcat、MySQL安装部署
大数据开发实战 计算机基础普及 [计算机基础与网络.1](动态主机配置协议 DHCP(Dynamic Host Configuration Protocol,动态主机配置协议) 是 RFC 1541( ...
- packer 学习笔记
前言 网上有一个老哥用 packer 制作镜像的博客里开篇就提到[1]. Failure is success in progress. -- Albert Einstein 不要害怕失败,在用 pa ...
- c++单例模式总结
分类 懒汉式:实例对象在第一次被使用时才进行初始化. 饿汉式:实例在定义时就被初始化. 特点 1.构造函数和析构函数私有化,不允许外部创建实例对象. 2.拷贝构造函数和复制运算符重载被delete,不 ...
- codeup之日期类
Description 编写一个日期类,要求按xxxx-xx-xx 的格式输出日期,实现加一天的操作. Input 输入第一行表示测试用例的个数m,接下来m行每行有3个用空格隔开的整数,分别表示年月日 ...
- 小白也能行!10分钟用Cursor搭建个人博客网站(零基础教程)
一.Cursor是什么?Cursor是一款基于AI的智能代码编辑器,它整合了GPT-4技术,可以帮助我们: 自动生成代码 解释代码含义 修复代码错误 对话式编程指导特别适合编程新手使用,传统搭建博客需 ...
- Manim动画渲染:从代码到屏幕的幕后故事
Manim是一个强大的动画制作库,它能够将简单的Python代码转化为精美的动画视频. 你是否好奇过,当你运行Manim代码时,背后的魔法是如何发生的呢? 今天,将重点介绍渲染过程中的三个关键步骤:S ...
- 2 MyBatis动态sql之where标签|转
1 MyBatis动态SQL之if 语句 2 MyBatis动态sql之where标签|转 3 MyBatis动态SQL之set标签|转 4 MyBatis动态SQL之trim元素|转 5 MyBat ...
- 聊聊@Autowired注解的Field injection is not recommended提示问题
1. 前言 在我接触过的大部分Java项目中,经常看到使用@Autowired注解进行字段注入: import org.springframework.beans.factory.annotation ...
- SQL Server 2025 预览版新功能点评
T-SQL 语言增强 正则表达式 (Regex) 支持 功能概述: SQL Server 2025 在 T-SQL 中原生引入了 POSIX 兼容的正则表达式支持,通过内置函数(如 REGEXP_LI ...
- Spring扩展接口-BeanFactoryPostProcessor
.markdown-body { line-height: 1.75; font-weight: 400; font-size: 16px; overflow-x: hidden; color: rg ...