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.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <title>Adventure 3 — Activity</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);
      }
    .hint{ font-size:0.88rem; color:#666; line-height:1.35; margin-top:0.5rem; }
    .workline{ margin:0.35rem 0; }
    .blank{ display:inline-block; }
    input.blank{ border:none; border-bottom:2px solid #999; background:transparent;
      font-size:1rem; padding:2px 4px; min-width:220px; }
    input.blank.sm{ min-width:120px; }
    input.blank.lg{ min-width:360px; }
    .blank.sm{ min-width:120px; }
    .blank.lg{ min-width:360px; }
    .steps li{ margin:0.35rem 0; }
  </style>
</head>
<body>
  <div class="page">
     <div class="card">
      <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_solution.html"><button>✅ Solutions</button></a>
    </div>

    <h1>✏️ Adventure 3 — Activity</h1>
    <div class="subtitle">
      Your goal: use geometry to compute <code>df(x)</code>, then find <code>df(x)/dx</code>.
      Keep <code>dx</code> as a tiny number, and remember: terms with <code>dx</code> or <code>dx²</code> or <code>dx³</code> vanish as <code>dx → 0</code>.
    </div>

   
      <p class="hint">
        Tip: Think “new pieces only.” The area/volume of the original blue square/cube is already <code>x²</code> or <code>x³</code>.
        <br>Only calculate what gets added when each side grows from <code>x</code> to <code>x + dx</code>.
      </p>
    </div>

    <h2>Part A — Growing a Square: <code>f(x)=x²</code></h2>
    <div class="card">
      <div class="imgwrap">
        <img src="images/adventure_3_image_1_student.png" alt="Growing square student image">
      </div>

      <ol class="steps">
        <li>Write the area of each new piece:
          <div class="workline">Vertical strip area = <input class="blank sm" type="text" /></div>
          <div class="workline">Horizontal strip area = <input class="blank sm" type="text" /></div>
          <div class="workline">Corner square area = <input class="blank sm" type="text" /></div>
        </li>

        <li>Add them to find <code>df(x)</code>:
          <div class="workline"><code>df(x) =</code> <input class="blank lg" type="text" /></div>
        </li>

        <li>Simplify:
          <div class="workline"><code>df(x) =</code> <input class="blank lg" type="text" /></div>
        </li>

        <li>Divide by <code>dx</code>:
          <div class="workline"><code>df(x)/dx =</code> <input class="blank lg" type="text" /></div>
        </li>

        <li>Now let <code>dx → 0</code>. Cross out any terms that vanish and write the derivative:
          <div class="workline"><strong>Derivative:</strong> <code>d(x²)/dx =</code> <input class="blank sm" type="text" /></div>
        </li>
      </ol>
    </div>

    <h2>Part B — Growing a Cube: <code>f(x)=x³</code></h2>
    <div class="card">
      <div class="imgwrap">
        <img src="images/adventure_3_image_2_student.png" alt="Growing cube student image">
      </div>

      <ol class="steps">
        <li>Find the total volume of the new pieces that appear when the sides of a this cube grows from <code>x</code> to <code>x+dx</code>:
          <ul>
            <li>Total volume of large face "sheets" each of volume <code>x²·dx</code>? <input class="blank sm" type="text" /></li>
            <li>Total volume of edge "bars" each of volume <code>x·dx²</code>? <input class="blank sm" type="text" /></li>
            <li>Total volume of tiny corner cube of volume <code>dx³</code>? <input class="blank sm" type="text" /></li>
          </ul>
        </li>

        <li>Add them to find <code>df(x)</code>:
          <div class="workline"><code>df(x) =</code> <input class="blank lg" type="text" /></div>
        </li>

        <li>Factor out <code>dx</code> :
          <div class="workline"><code>df(x) =</code> <input class="blank lg" type="text" /></div>
        </li>

        <li>Divide by <code>dx</code>:
          <div class="workline"><code>df(x)/dx =</code> <input class="blank lg" type="text" /></div>
        </li>

        <li>Now let <code>dx → 0</code>. Cross out vanishing terms and write the derivative:
          <div class="workline"><strong>Derivative:</strong> <code>d(x³)/dx =</code> <input class="blank sm" type="text" /></div>
        </li>
      </ol>

      <p class="hint">
        Check: your final answers should be <code>2x</code> and <code>3x²</code>.
      </p>
    </div>
  </div>
</body>
</html>

Anon7 - 2021