Understanding Limits (WIP)
Understanding Limits
\[ \lim_{x \to c} f(x) = L \] Let’s start with a simple function...
function f(x) {
return (x ** 2 - 1) / (x - 1);
}
What happens as `x` gets closer to 1?
function f(x) {
return (x ** 2 - 1) / (x - 1);
}
What happens as `x` gets closer to 1?