Compare commits

..

19 Commits

Author SHA1 Message Date
arc
232b5f2709 vault backup: 2025-01-26 17:57:19 2025-01-26 17:57:19 -07:00
arc
89a56a9d16 vault backup: 2025-01-26 17:52:19 2025-01-26 17:52:19 -07:00
arc
c5584123d2 vault backup: 2025-01-26 17:47:19 2025-01-26 17:47:19 -07:00
arc
e8b4376546 vault backup: 2025-01-26 17:42:19 2025-01-26 17:42:19 -07:00
arc
b2aacf61ff vault backup: 2025-01-26 17:37:19 2025-01-26 17:37:19 -07:00
arc
032efeb055 vault backup: 2025-01-26 17:32:19 2025-01-26 17:32:19 -07:00
arc
f0f52ceacd vault backup: 2025-01-26 17:21:04 2025-01-26 17:21:04 -07:00
arc
20650f2916 vault backup: 2025-01-21 13:00:48 2025-01-21 13:00:48 -07:00
arc
a5661f686d vault backup: 2025-01-21 12:55:49 2025-01-21 12:55:49 -07:00
arc
51bfc78a36 vault backup: 2025-01-21 12:49:38 2025-01-21 12:49:38 -07:00
arc
37fb816baa vault backup: 2025-01-21 12:44:38 2025-01-21 12:44:38 -07:00
arc
8e3bb33d7c vault backup: 2025-01-21 12:39:38 2025-01-21 12:39:38 -07:00
arc
d0f0166fb5 vault backup: 2025-01-21 12:34:38 2025-01-21 12:34:38 -07:00
arc
ddb268ef39 vault backup: 2025-01-21 12:29:38 2025-01-21 12:29:38 -07:00
arc
4b7a25496e vault backup: 2025-01-21 12:24:38 2025-01-21 12:24:38 -07:00
arc
d963b081d9 vault backup: 2025-01-21 12:19:38 2025-01-21 12:19:38 -07:00
arc
d8e7b06c2c vault backup: 2025-01-21 12:14:38 2025-01-21 12:14:38 -07:00
arc
debaf2bace vault backup: 2025-01-21 12:09:38 2025-01-21 12:09:38 -07:00
arc
b6bb60e548 vault backup: 2025-01-21 12:04:38 2025-01-21 12:04:38 -07:00
3 changed files with 74 additions and 0 deletions

View File

View File

@ -0,0 +1,21 @@
A derivative can be used to describe the rate of change at a single point, or the *instantaneous velocity*.
The formula used to calculate the average rate of change looks like this:
$$ \dfrac{f(b) - f(a)}{b - a} $$
Interpreting it, this can be described as the change in $y$ over the change in $x$.
- Speed is always positive
- Velocity is directional
As the distance between the two points $a$ and $b$ grow smaller, we get closer and closer to the instantaneous velocity of a point. Limits are suited to describing the behavior of a function as it approaches a point.
If we have the coordinate pair $(a, f(a))$, and the value $h$ is the distance between $a$ and another $x$ value, the coordinates of that point can be described as ($(a + h, f(a + h))$. With this info:
- The slope of the secant line can be described as $\dfrac{f(a + h) - f(a)}{a + h - a}$, which simplifies to $\dfrac{f(a + h) - f(a)}{h}$.
- The slope of the *tangent line* or the *instantaneous velocity* can be found by taking the limit of the above function as the distance ($h$) approaches zero:
$$\lim_{h \to 0}\dfrac{f(a + h) - f(a)}{h}$$
The above formula can be used to find the *derivative*. This may also be referred to as the *instantaneous velocity*, or the *instantaneous rate of change*.
# Line Types
## Secant Line
A **Secant Line** connects two points on a graph.
A **Tangent Line** represents the rate of change or slope at a single point on the graph.

View File

@ -17,6 +17,59 @@ The standard notation for a limit is:
$$ \lim_{x \to a} f(x) = L $$
- As $x$ approaches $a$, the output of $f(x)$ draws closer to $L$. In the above notation, $x$ and $a$ are not necessarily equal.
- When plotted, the hole is located at $(a, L)$.
# Indeterminate Limits
If they have a limit of the form $lim_{x \to a} \frac{f(x)}{g(x)}$ where both $f(x) \to 0$ and $g(x) \to 0$ as $x \to a$ then this limit **may or may not** exist and is said to be an indeterminate form of type $\dfrac{0}{0}$.
To find this limit if it exists we must perform some mathematical manipulations on the quotient in order to change the form of the function. Some of the manipulations that can be tried are:
- Factor or Foil polynomials and try dividing out a common factor.
- Multiply numerator and denominator by the conjugate of a radical expression
- Combine fractions in the numerator or denominator of a complex fraction
# Limits of the Form $\frac{k}{0}, k \ne 0$
If we have a one sided limit of the form $\lim_{x \to a^*} \frac{f(x)}{g(x)}$ $f(x) \to k (k \ne 0)$ and $g(x) \to 0$ as $x \to a$ then:
$$ \lim_{x \to a^*} \frac{f(x)}{g(x)} = \infty \space or \space \lim_{x \to a^*} \frac{f(x)}{g(x)} = -\infty $$
# Limits of the Form $\frac{\infty}{\infty}$
If we have a limit of the form $\lim_{x \to a} \frac{f(x)}{g(x)}$ where both $f(x) \to \infty$ and $g(x) \to \infty$ as $x \to a$ then the limit may or may not exist and is said to be an indeterminate form of type $\frac{\infty}{\infty}$.
To find the limit if it exists we must perform some algebraic manipulations on the quotient in order to change the form of the function.
If $f(x)$ and $g(x)$ are polynomials, then we can multiply the numerator and denominator by $\dfrac{1}{x^n}$, where $n$ is the degree of the polynomial in the denominator.
# Continuity
A function is continuous if their graph can be traced with a pencil without lifting the pencil from the page.
Formally, a function $f$ is continuous at a point $a$ if:
- $f(a)$ is defined
- $\lim_{x \to a} f(x)$ exists
- $\lim_{x \to a} = f(a)$
- A function is continuous on the open interval $(a, b)$ if it is continuous at all points between $a$ and $b$
- A function is continuous on the closed interval $[a, b]$ if it is continuous at all points between $a$ and $b$
# Elementary Functions
An elementary function is any function that is defined using:
- Polynomial functions
- Rational functions
- Root functions
- Trig functions
- Inverse trig functions
- Exponential functions
- Logarithmic functions
- Operations of:
- Addition
- Subtraction
- Multiplication
- Division
- Composition
A piece-wise function is *not* considered an elementary function
- If $f$ and $g$ are continuous at a point $x = a$ and $c$ is a constant then the following functions are also continuous at $x = a$
- If $g$ is continuous at $a$ and $f$ is continuous at $g(a)$, then $f(g(a))$ is continuous at $a$
- If $f$ is an elementary function and if $a$ is in the domain of $f$, then $f$ is continuous at $a$
Together, the above theorems tell us that if $a$ is in the domain of an elementary function, then $\lim_{x \to a} f(x) = f(a)$.
# Intermediate Value Theorem
Let $f$ be a continuous function on the interval $[a, b]$ and let $N$ be any number strictly between $f(a)$ and $f(b)$. Then there exists a number $c$ in $(a, b)$ such that $f(c) = N$.
# Definitions
| Term | Definition |