KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/drsuper/CalculusMechanics/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/drsuper/CalculusMechanics/adventure_3_solution.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>Adventure 3 — Solutions</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <style>
    body{ font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      margin:0; background:#f5f5fb; color:#222; }
    .page{ width:100%; box-sizing:border-box; padding:1.6rem 5vw 3rem; background:#fff; }
    .toplinks{ margin-bottom:0.9rem; font-size:0.95rem; }
    a{ color:#1f4ed8; text-decoration:none; }
    a:hover{ text-decoration:underline; }
    h1{ margin:0.4rem 0 0.2rem; font-size:1.8rem; text-align:left; }
    .subtitle{ color:#555; margin:0 0 1.2rem; line-height:1.45; }
    h2{ margin-top:1.5rem; margin-bottom:0.35rem; font-size:1.25rem; }
    p{ line-height:1.55; margin:0.35rem 0 0.75rem; }
    .card{ border:1px solid #dde3ff; background:#f6f7ff; border-radius:14px;
      padding:1rem 1rem 0.9rem; margin-top:0.7rem; }
    .imgwrap{ max-width:78%; margin:0.6rem auto; width:100%; overflow:hidden; border-radius:12px; background:#fff;
      border:1px solid #d9def5; }
    .imgwrap img{ width:100%; height:auto; display:block; }
    code{ background:#fff; border:1px solid #d9def5; padding:2px 6px; border-radius:8px; }
.top-buttons{
  display: flex;
  gap: 10px;
  margin-left: 12px;   /* ← move right */
}
button {
  background: #e9f0ff;
  border: 2px solid #6b8cff;
  border-radius: 0;
  padding: 10px 18px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 3px 0 #4f6fe6;
  transition: all 0.12s ease;
}

/* Hover */
button:hover {
  background: #f3f7ff;
}

/* Pressed */
button:active {
  background: #cddcff;
  box-shadow: 0 1px 0 #4f6fe6;
  transform: translateY(2px);
}

/* Optional: "checked" feeling after click */
  button.checked {
    background: #dff5e1;
    border-color: #3a9b3a;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
  }
  button.sampled {
        background: #fff3d9;
        border-color: #d9a441;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
      }
  </style>
</head>
<body>
  <div class="page">
    <div style="display:flex; flex-wrap:wrap; gap:12px;">
        <a href="index.html"><button>🧭 Hub</button></a>
        <a href="adventure_3_home.html"><button>🏠 Home</button></a>
        <a href="adventure_3.html"><button>✏️ Activity</button></a>
        
    </div>

    <h1>✅ Adventure 3 — Solutions</h1>
    <div class="subtitle">
      These solutions show the “added pieces” and why the <code>dx²</code> and <code>dx³</code> terms vanish as <code>dx → 0</code>.
    </div>

    <div class="card">
      
      <p class="hint">
        Key idea: derivatives keep the terms proportional to <code>dx</code> and drop higher powers like <code>dx²</code>, <code>dx³</code>.
      </p>
    </div>

    <h2>Solution A — <code>f(x)=x²</code></h2>
    <div class="card">
      <div class="imgwrap">
        <img src="images/adventure_3_image_1_solution.png" alt="Square solution image">
      </div>
      <p>
        Added area pieces:
        <br>vertical strip: <code>x·dx</code>
        <br>horizontal strip: <code>x·dx</code>
        <br>corner: <code>dx²</code>
      </p>
      <p>
        So <code>df(x) = x·dx + x·dx + dx² = 2x·dx + dx²</code>.
      </p>
      <p>
        Divide by <code>dx</code>:
        <br><code>df(x)/dx = 2x + dx</code>.
      </p>
      <p>
        As <code>dx → 0</code>, the <code>dx</code> term vanishes, so
        <br><strong><code>d(x²)/dx = 2x</code></strong>.
      </p>
    </div>

    <h2>Solution B — <code>f(x)=x³</code></h2>
    <div class="card">
      <div class="imgwrap">
        <img src="images/adventure_3_image_2_solution.png" alt="Cube solution image">
      </div>
      <p>
        Added volume pieces:
        <br>3 face sheets: <code>3x²·dx</code>
        <br>3 edge bars: <code>3x·dx²</code>
        <br>1 corner cube: <code>dx³</code>
      </p>
      <p>
        So <code>df(x) = 3x²·dx + 3x·dx² + dx³</code>.
      </p>
      <p>
        Factor out <code>dx</code>:
        <br><code>df(x) = (3x² + 3x·dx + dx²)·dx</code>.
      </p>
      <p>
        Divide by <code>dx</code>:
        <br><code>df(x)/dx = 3x² + 3x·dx + dx²</code>.
      </p>
      <p>
        As <code>dx → 0</code>, the last two terms vanish, so
        <br><strong><code>d(x³)/dx = 3x²</code></strong>.
      </p>
    </div>

  </div>
</body>
</html>

Anon7 - 2021