Skip to content
LAM
Read Home Blog
Make Projects HTML Tools Games
Touch grass Notes Resume Links
Home Blog HTML Projects
Tools Games Notes Resume Links
Back Calculus 2 Curve Cheat Sheet Math
Download Open
Show description 1,380 chars · Math

Calculus 2 Curve Cheat Sheet

Calculus 2 Curve Cheat Sheet











Curve Cheat Sheet

Parametric & Polar Forms








Shape

Cartesian Equation

Parametric / Polar Equation

Key Characteristics







Line / Segment

$$ y = mx+b $$


Parametric: $$ x = a+bt, y = c+dt $$
Polar: $$ \theta = c $$


The parametric form defines a line segment if \(t\) is restricted.





Circle

$$ x^2 + y^2 = R^2 $$


Parametric: $$ x=R\cos t, y=R\sin t $$
Polar: $$ r = R $$
Polar: $$ r = a\cos\theta $$


Standard parametric form traces counter-clockwise. In polar, \(r=a\cos\theta\) is on the x-axis.





Ellipse

$$ \frac{x^2}{a^2} + \frac{y^2}{b^2} = 1 $$


Parametric: $$ x=a\cos t, y=b\sin t $$


A stretched circle where horizontal radius is \(a\) and vertical radius is \(b\).





Parabola

$$ y = Ax^2+Bx+C $$


Parametric: $$ x = t, y = At^2+Bt+C $$
Parametric (Trig): $$ x=\tan t, y=\sec^2 t $$


Often formed by one linear and one quadratic parametric equation.





Cardioid

(Complex)


Polar: $$ r = a \pm a\sin\theta $$
Polar: $$ r = a \pm a\cos\theta $$


Heart-shaped curve. Key is that the coefficients are equal (e.g., \(r=2+2\cos\theta\)).





Rose Curve

(Complex)


Polar: $$ r=a\cos(n\theta) $$
Polar: $$ r=a\sin(n\theta) $$


If \(n\) is odd, there are \(n\) petals. If \(n\) is even, there are \(2n\) petals.

Calculus 2 Curve Cheat Sheet

7,387 bytes · HTML source
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Calculus 2 Curve Cheat Sheet</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css" xintegrity="sha384-n8MVd4RsNIU07EWpWqzUggpzzbSFypGPBVKGqK2SoQGraoJolVRyCFOgGKAxqt3L" crossorigin="anonymous">
    <script src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js" xintegrity="sha384-XjKyOOlGwcjNTAIQHIpgOno0Hl1YQqzUOEleOLALmuqehneUG+vnGctmUb0ZY0l8" crossorigin="anonymous"></script>
    <script src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/contrib/auto-render.min.js" xintegrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" crossorigin="anonymous"></script>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
    <style>
        body {
            font-family: 'Inter', sans-serif;
            background-color: #111827; /* Dark Blue/Black */
        }
        .katex-display {
            margin: 0.5em 0;
            font-size: 1.1em;
        }
        .table-header {
            background-color: #0d3c59; /* Darker Blue */
            color: #FBBF24; /* Amber/Yellow */
        }
        .table-row-dark {
            background-color: #1F2937; /* Gray-Blue */
        }
        .table-row-light {
            background-color: #2b3648; /* Lighter Gray-Blue */
        }
        .shape-name {
            color: #F97316; /* Orange */
            font-weight: 700;
        }
        .notes {
            color: #E5E7EB; /* Light Gray */
        }
        .title-gradient {
            background: linear-gradient(90deg, #FBBF24, #F97316, #3B82F6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        td, th {
            vertical-align: middle;
        }
    </style>
</head>
<body class="text-gray-200">

    <div class="container mx-auto p-4 sm:p-6 lg:p-8">
        <header class="text-center mb-8">
            <h1 class="text-4xl md:text-5xl font-bold title-gradient">Curve Cheat Sheet</h1>
            <p class="text-lg text-blue-300 mt-2">Parametric & Polar Forms</p>
        </header>

        <div class="overflow-x-auto rounded-lg shadow-2xl">
            <table class="min-w-full text-sm sm:text-base">
                <thead class="table-header">
                    <tr>
                        <th class="p-4 text-left font-semibold">Shape</th>
                        <th class="p-4 text-left font-semibold">Cartesian Equation</th>
                        <th class="p-4 text-left font-semibold">Parametric / Polar Equation</th>
                        <th class="p-4 text-left font-semibold">Key Characteristics</th>
                    </tr>
                </thead>
                <tbody>
                    <!-- Line -->
                    <tr class="table-row-dark border-b border-gray-700">
                        <td class="p-4 shape-name">Line / Segment</td>
                        <td class="p-4">$$ y = mx+b $$</td>
                        <td class="p-4">
                            <strong>Parametric:</strong> $$ x = a+bt, y = c+dt $$
                            <strong>Polar:</strong> $$ \theta = c $$
                        </td>
                        <td class="p-4 notes">The parametric form defines a line segment if \(t\) is restricted.</td>
                    </tr>
                    <!-- Circle -->
                    <tr class="table-row-light border-b border-gray-700">
                        <td class="p-4 shape-name">Circle</td>
                        <td class="p-4">$$ x^2 + y^2 = R^2 $$</td>
                        <td class="p-4">
                            <strong>Parametric:</strong> $$ x=R\cos t, y=R\sin t $$
                            <strong>Polar:</strong> $$ r = R $$
                            <strong>Polar:</strong> $$ r = a\cos\theta $$
                        </td>
                        <td class="p-4 notes">Standard parametric form traces counter-clockwise. In polar, \(r=a\cos\theta\) is on the x-axis.</td>
                    </tr>
                    <!-- Ellipse -->
                    <tr class="table-row-dark border-b border-gray-700">
                        <td class="p-4 shape-name">Ellipse</td>
                        <td class="p-4">$$ \frac{x^2}{a^2} + \frac{y^2}{b^2} = 1 $$</td>
                        <td class="p-4">
                            <strong>Parametric:</strong> $$ x=a\cos t, y=b\sin t $$
                        </td>
                        <td class="p-4 notes">A stretched circle where horizontal radius is \(a\) and vertical radius is \(b\).</td>
                    </tr>
                    <!-- Parabola -->
                    <tr class="table-row-light border-b border-gray-700">
                        <td class="p-4 shape-name">Parabola</td>
                        <td class="p-4">$$ y = Ax^2+Bx+C $$</td>
                        <td class="p-4">
                            <strong>Parametric:</strong> $$ x = t, y = At^2+Bt+C $$
                            <strong>Parametric (Trig):</strong> $$ x=\tan t, y=\sec^2 t $$
                        </td>
                        <td class="p-4 notes">Often formed by one linear and one quadratic parametric equation.</td>
                    </tr>
                    <!-- Cardioid -->
                    <tr class="table-row-dark border-b border-gray-700">
                        <td class="p-4 shape-name">Cardioid</td>
                        <td class="p-4 notes">(Complex)</td>
                        <td class="p-4">
                            <strong>Polar:</strong> $$ r = a \pm a\sin\theta $$
                            <strong>Polar:</strong> $$ r = a \pm a\cos\theta $$
                        </td>
                        <td class="p-4 notes">Heart-shaped curve. Key is that the coefficients are equal (e.g., \(r=2+2\cos\theta\)).</td>
                    </tr>
                    <!-- Rose Curve -->
                    <tr class="table-row-light">
                        <td class="p-4 shape-name">Rose Curve</td>
                        <td class="p-4 notes">(Complex)</td>
                        <td class="p-4">
                            <strong>Polar:</strong> $$ r=a\cos(n\theta) $$
                            <strong>Polar:</strong> $$ r=a\sin(n\theta) $$
                        </td>
                        <td class="p-4 notes">If \(n\) is odd, there are \(n\) petals. If \(n\) is even, there are \(2n\) petals.</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>

    <script>
        document.addEventListener("DOMContentLoaded", function() {
            renderMathInElement(document.body, {
                delimiters: [
                    {left: '$$', right: '$$', display: true},
                    {left: '\\[', right: '\\]', display: true},
                    {left: '$', right: '$', display: false},
                    {left: '\\(', right: '\\)', display: false}
                ]
            });
        });
    </script>
</body>
</html>