Analyzing Functions: Intersections and Critical Points
Understanding mathematical behavior often requires comparing multiple functions simultaneously or pinpointing specific coordinates. Our updated EquationGraph component now supports multi-series plotting and coordinate points.
1. Finding Intersections
Consider the problem of finding where a parabola intersects with a line .
Solving : So, the intersections are at and .
Let’s visualize this:
Intersection Analysis
Visualizing solutions to x² = x+2
2. Visualizing Derivatives
In Calculus, it’s helpful to see a function alongside its derivative. Here is and its derivative .
Notice how the peaks of the sine wave line up with the zero-crossings of the cosine wave.
Function & Derivative
sin(x) [Blue] vs cos(x) [Green]
3. Optimization Problems
Visualizing the maximum area of a rectangle inscribed in a semicircle. If the circle is (radius 2), the area of a rectangle with corner is .
This graph clearly shows the peak area occurs at , where the Area is exactly 4.
Implementation Code
Here is how you can use the component in your MDX files:
<EquationGraph
series={[
{ function: "sin", color: "blue" },
{ function: "cos", color: "green" }
]}
points={[
{ x: 0, y: 0, label: "Origin" }
]}
/>