Entradas

Mostrando entradas de mayo, 2019

A simple proof for Euler's formula

Euler's formula: $$e^{i\theta}=\cos \theta + i \sin \theta$$ Let $f(\theta )=e^{i\theta}$ and $g(\theta )= \cos \theta + i \sin \theta$, considering $i$ as a constant, lets make our first contact with the proof we need. For $\theta = 0$,  we see that $f(0) = g(0) = 1$, but this is not enough for saying that both functions are actually equal. Then, we will just make our first derivative of both functions: $$f'(\theta) = e^{i \theta} \cdot \frac{d \left ( i \theta \right )}{d \theta}=e^{i \theta } \cdot i := i \cdot f(\theta)$$ $$g ' (\theta) = -\sin \theta + i \cos \theta = i^2 \sin \theta + i \cos \theta := i \cdot g(\theta)$$ We got the same differential equation for both functions. This means there is gonna be, at first: one general solution that includes both functions. But considering that the point $P(0,1)$ belongs to $f(\theta)$ and $g(\theta)$ at the same time, the constant that appears in the general solution will disappear. In other words, the function t...

MÉTODO DE NEWTON-RAPHSON

Imagen
El método es otro de los muchos iterativos usados para dar soluciones a ecuaciones no tan sencillas. Sabiendo derivar, usar el método de Newton-Raphson es muy fácil. Su enunciado dice: $f(x)=0$ Sea $f(x)$ una función derivable en $\mathbb{R}$ que cumpla: $\exists \ \theta \in \mathbb{R} : f(\theta)=0$, tomaremos un valor aleatorio $x_0$, y formaremos una serie de términos $x_1 , x_2, x_3,... , x_n$ tal que: $$x_{n+1} = x_n - \frac{f \left ( x_n \right )}{f '\left ( x_n \right )} \quad , {f '\left ( x_n \right )} \neq 0$$ Siguiendo la "definición", podemos deducir fácilmente que mientras más aproximaciones hagamos, más exacta será la solución. Por tanto: $$\theta \approx x_0 - \frac{f(x_0)}{f'(x_0)}-\frac{f(x_1)}{f'(x_1)}...\frac{f(x_n)}{f'(x_n)} \quad , {f '\left ( x_n \right )} \neq 0$$ Fuente:Wikipedia Interpretación geométrica del método de Newton Hagamos un ejemplo para entender mejor el método: Calcular una solución aproxi...