Physics Study Guide – Units 1-5
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
min-height: 100vh;
color: #e8e8e8;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 30px 0;
background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
border-radius: 15px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
header h1 {
font-size: 2.5em;
color: #00d4ff;
text-shadow: 0 0 20px rgba(0,212,255,0.5);
margin-bottom: 10px;
}
header p {
color: #a0a0a0;
font-size: 1.1em;
}
/* Tab Navigation */
.tab-nav {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-bottom: 20px;
background: #0f3460;
padding: 10px;
border-radius: 10px;
}
.tab-btn {
flex: 1;
min-width: 120px;
padding: 12px 20px;
border: none;
background: #1a1a2e;
color: #a0a0a0;
cursor: pointer;
border-radius: 8px;
font-size: 0.95em;
font-weight: 600;
transition: all 0.3s ease;
}
.tab-btn:hover {
background: #2a2a4e;
color: #00d4ff;
}
.tab-btn.active {
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
color: #1a1a2e;
box-shadow: 0 5px 15px rgba(0,212,255,0.3);
}
/* Tab Content */
.tab-content {
display: none;
animation: fadeIn 0.4s ease;
}
.tab-content.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Cards */
.card {
background: linear-gradient(135deg, #1e3a5f 0%, #16213e 100%);
border-radius: 15px;
padding: 25px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
border: 1px solid rgba(0,212,255,0.1);
}
.card h2 {
color: #00d4ff;
margin-bottom: 15px;
font-size: 1.5em;
display: flex;
align-items: center;
gap: 10px;
}
.card h3 {
color: #4ecdc4;
margin: 20px 0 10px 0;
font-size: 1.2em;
}
/* Expandable Sections */
.expandable {
margin: 10px 0;
border: 1px solid rgba(0,212,255,0.2);
border-radius: 10px;
overflow: hidden;
}
.expandable-header {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s ease;
}
.expandable-header:hover {
background: rgba(0,212,255,0.2);
}
.expandable-header h4 {
color: #00d4ff;
font-size: 1.1em;
}
.expandable-icon {
font-size: 1.5em;
color: #00d4ff;
transition: transform 0.3s ease;
}
.expandable.open .expandable-icon {
transform: rotate(45deg);
}
.expandable-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
background: rgba(0,0,0,0.2);
}
.expandable.open .expandable-content {
max-height: 2000px;
}
.expandable-inner {
padding: 20px;
}
/* Lists */
ul, ol {
margin-left: 20px;
margin-bottom: 15px;
}
li {
margin-bottom: 8px;
}
/* Equations */
.equation {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
border-radius: 8px;
font-family: ‘Courier New’, monospace;
font-size: 1.1em;
color: #4ecdc4;
margin: 10px 0;
border-left: 4px solid #00d4ff;
}
/* Warning/Important boxes */
.warning {
background: linear-gradient(135deg, rgba(255,107,107,0.2) 0%, rgba(255,107,107,0.1) 100%);
border: 1px solid #ff6b6b;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.warning h4 {
color: #ff6b6b;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.tip {
background: linear-gradient(135deg, rgba(78,205,196,0.2) 0%, rgba(78,205,196,0.1) 100%);
border: 1px solid #4ecdc4;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.tip h4 {
color: #4ecdc4;
margin-bottom: 10px;
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
th, td {
padding: 12px 15px;
text-align: left;
border: 1px solid rgba(0,212,255,0.2);
}
th {
background: rgba(0,212,255,0.2);
color: #00d4ff;
font-weight: 600;
}
tr:nth-child(even) {
background: rgba(0,0,0,0.2);
}
/* Quiz Section */
.quiz-question {
background: rgba(0,0,0,0.3);
border-radius: 10px;
padding: 20px;
margin: 15px 0;
}
.quiz-question p {
font-weight: 600;
color: #fff;
margin-bottom: 15px;
}
.quiz-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.quiz-option {
padding: 12px 15px;
background: rgba(0,212,255,0.1);
border: 2px solid transparent;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.quiz-option:hover {
background: rgba(0,212,255,0.2);
border-color: rgba(0,212,255,0.3);
}
.quiz-option.selected {
border-color: #00d4ff;
background: rgba(0,212,255,0.2);
}
.quiz-option.correct {
border-color: #4ecdc4;
background: rgba(78,205,196,0.3);
}
.quiz-option.incorrect {
border-color: #ff6b6b;
background: rgba(255,107,107,0.3);
}
.check-btn {
margin-top: 15px;
padding: 12px 30px;
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
border: none;
border-radius: 8px;
color: #1a1a2e;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.check-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,212,255,0.4);
}
.feedback {
margin-top: 15px;
padding: 15px;
border-radius: 8px;
display: none;
}
.feedback.show {
display: block;
}
.feedback.correct {
background: rgba(78,205,196,0.2);
border: 1px solid #4ecdc4;
color: #4ecdc4;
}
.feedback.incorrect {
background: rgba(255,107,107,0.2);
border: 1px solid #ff6b6b;
color: #ff6b6b;
}
/* Graph Descriptions */
.graph-box {
display: inline-block;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(0,212,255,0.3);
border-radius: 8px;
padding: 15px;
margin: 10px;
text-align: center;
min-width: 150px;
}
.graph-box .label {
font-size: 0.9em;
color: #a0a0a0;
margin-top: 8px;
}
/* Responsive */
@media (max-width: 768px) {
.tab-btn {
min-width: 80px;
padding: 10px 15px;
font-size: 0.85em;
}
header h1 {
font-size: 1.8em;
}
.card {
padding: 15px;
}
}
/* Print styles */
@media print {
body {
background: white;
color: black;
}
.tab-nav {
display: none;
}
.tab-content {
display: block !important;
}
.expandable-content {
max-height: none !important;
}
}
/* Highlight */
.highlight {
color: #00d4ff;
font-weight: 600;
}
.highlight-warn {
color: #ff6b6b;
font-weight: 600;
}
.highlight-success {
color: #4ecdc4;
font-weight: 600;
}
/* Progress tracker */
.progress-bar {
background: rgba(0,0,0,0.3);
border-radius: 10px;
height: 10px;
margin: 20px 0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #00d4ff, #4ecdc4);
border-radius: 10px;
transition: width 0.5s ease;
}
🔬 Physics Study Guide
Units 1-5: Energy, Motion, and Forces
⚡ Unit 1: Energy
Energy is the ability to cause a change. It’s not a “thing” itself, but a property of objects in a system.
🚗 Unit 2: Constant Velocity
🚀 Unit 3: Uniformly Accelerated Motion
🚨 CRITICAL MISCONCEPTION 🚨
“Positive acceleration means speeding up” — THIS IS FALSE!
What ACTUALLY determines speeding up vs. slowing down:
- SPEEDING UP: Velocity and acceleration have the SAME sign
- SLOWING DOWN: Velocity and acceleration have OPPOSITE signs
| Velocity | Acceleration | Result |
|---|---|---|
| +5 m/s | +2 m/s² | SPEEDING UP |
| −5 m/s | −2 m/s² | SPEEDING UP |
| +5 m/s | −2 m/s² | SLOWING DOWN |
| −5 m/s | +2 m/s² | SLOWING DOWN |
Avoid the term “deceleration” — it causes confusion!
⚖️ Unit 4: Balanced Forces
🚨 INERTIA IS NOT A FORCE! 🚨
Inertia is the tendency of an object to resist changes in motion. It is a property, not a force.
NEVER include “inertia” in a force diagram!
💥 Unit 5: Unbalanced Forces (Newton’s 2nd Law)
🔗 The Big Connection: Forces ↔ Motion ↔ Energy
- Balanced forces → Constant velocity (or rest)
- Unbalanced forces → Acceleration
- Forces through distance → Energy transfer (Working)
🎯 Self-Quiz
Test your understanding! Click on your answer, then check.
1. A ball is dropped from rest. As it falls (ignoring air resistance), which describes the energy changes?
2. On a position vs. time graph, a straight line with negative slope means:
3. An object has velocity = −8 m/s and acceleration = +2 m/s². The object is:
4. A book sits motionless on a table. The forces on the book are:
5. A person stands on a scale in an elevator. The scale reads MORE than their normal weight. The elevator is:
6. Which of the following is NOT a force?
7. The area under a velocity-time graph represents:
8. A cart is pushed up a ramp toward a motion detector at the top. After the push, while the cart is on the ramp, the acceleration is:
📋 Formula Sheet
Kinematics (Motion)
| Quantity | Formula | Graph Connection |
|---|---|---|
| Velocity | v = Δx / Δt | Slope of x-t graph |
| Acceleration | a = Δv / Δt | Slope of v-t graph |
| Displacement | Δx = vΔt (constant v) Δx = viΔt + ½a(Δt)² |
Area under v-t graph |
| Final velocity | vf = vi + aΔt | — |
| Average velocity | v̄ = (vi + vf) / 2 | Only for constant a |
Forces (Dynamics)
| Quantity | Formula |
|---|---|
| Weight (gravitational force) | Fg = mg |
| Newton’s 2nd Law | ΣF = ma |
| Equilibrium | ΣF = 0 |
| Spring force | F = kx |
Energy
| Type | Formula |
|---|---|
| Gravitational potential energy | Eg = mgh |
| Elastic potential energy | Ee = ½kx² |
| Conservation of energy | Einitial + Ein = Efinal + Eout |
| 1st Law of Thermodynamics | ΔEsystem = W + Q + R |
Momentum
| Quantity | Formula |
|---|---|
| Momentum | p = mv |
| Conservation | p1i + p2i = p1f + p2f |
Constants
// Tab switching
document.querySelectorAll(‘.tab-btn’).forEach(btn => {
btn.addEventListener(‘click’, () => {
// Remove active from all tabs and content
document.querySelectorAll(‘.tab-btn’).forEach(b => b.classList.remove(‘active’));
document.querySelectorAll(‘.tab-content’).forEach(c => c.classList.remove(‘active’));
// Add active to clicked tab and corresponding content
btn.classList.add(‘active’);
document.getElementById(btn.dataset.tab).classList.add(‘active’);
});
});
// Expandable sections
document.querySelectorAll(‘.expandable-header’).forEach(header => {
header.addEventListener(‘click’, () => {
header.parentElement.classList.toggle(‘open’);
});
});
// Quiz functionality
document.querySelectorAll(‘.quiz-option’).forEach(option => {
option.addEventListener(‘click’, () => {
// Remove selected from siblings
option.parentElement.querySelectorAll(‘.quiz-option’).forEach(o => {
o.classList.remove(‘selected’, ‘correct’, ‘incorrect’);
});
option.classList.add(‘selected’);
// Hide feedback
option.closest(‘.quiz-question’).querySelector(‘.feedback’).classList.remove(‘show’);
});
});
function checkAnswer(btn) {
const question = btn.closest(‘.quiz-question’);
const correct = question.dataset.correct;
const selected = question.querySelector(‘.quiz-option.selected’);
const feedback = question.querySelector(‘.feedback’);
if (!selected) {
feedback.textContent = ‘Please select an answer first!’;
feedback.className = ‘feedback show incorrect’;
return;
}
const selectedValue = selected.dataset.value;
if (selectedValue === correct) {
selected.classList.add(‘correct’);
feedback.textContent = ‘✓ Correct! Great job!’;
feedback.className = ‘feedback show correct’;
} else {
selected.classList.add(‘incorrect’);
// Highlight correct answer
question.querySelectorAll(‘.quiz-option’).forEach(o => {
if (o.dataset.value === correct) {
o.classList.add(‘correct’);
}
});
feedback.textContent = ‘✗ Not quite. The correct answer is highlighted in green.’;
feedback.className = ‘feedback show incorrect’;
}
}
Physics Study Guide – Units 1-5
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
min-height: 100vh;
color: #e8e8e8;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 30px 0;
background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
border-radius: 15px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
header h1 {
font-size: 2.5em;
color: #00d4ff;
text-shadow: 0 0 20px rgba(0,212,255,0.5);
margin-bottom: 10px;
}
header p {
color: #a0a0a0;
font-size: 1.1em;
}
/* Tab Navigation */
.tab-nav {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-bottom: 20px;
background: #0f3460;
padding: 10px;
border-radius: 10px;
}
.tab-btn {
flex: 1;
min-width: 120px;
padding: 12px 20px;
border: none;
background: #1a1a2e;
color: #a0a0a0;
cursor: pointer;
border-radius: 8px;
font-size: 0.95em;
font-weight: 600;
transition: all 0.3s ease;
}
.tab-btn:hover {
background: #2a2a4e;
color: #00d4ff;
}
.tab-btn.active {
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
color: #1a1a2e;
box-shadow: 0 5px 15px rgba(0,212,255,0.3);
}
/* Tab Content */
.tab-content {
display: none;
animation: fadeIn 0.4s ease;
}
.tab-content.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Cards */
.card {
background: linear-gradient(135deg, #1e3a5f 0%, #16213e 100%);
border-radius: 15px;
padding: 25px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
border: 1px solid rgba(0,212,255,0.1);
}
.card h2 {
color: #00d4ff;
margin-bottom: 15px;
font-size: 1.5em;
display: flex;
align-items: center;
gap: 10px;
}
.card h3 {
color: #4ecdc4;
margin: 20px 0 10px 0;
font-size: 1.2em;
}
/* Expandable Sections */
.expandable {
margin: 10px 0;
border: 1px solid rgba(0,212,255,0.2);
border-radius: 10px;
overflow: hidden;
}
.expandable-header {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s ease;
}
.expandable-header:hover {
background: rgba(0,212,255,0.2);
}
.expandable-header h4 {
color: #00d4ff;
font-size: 1.1em;
}
.expandable-icon {
font-size: 1.5em;
color: #00d4ff;
transition: transform 0.3s ease;
}
.expandable.open .expandable-icon {
transform: rotate(45deg);
}
.expandable-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
background: rgba(0,0,0,0.2);
}
.expandable.open .expandable-content {
max-height: 2000px;
}
.expandable-inner {
padding: 20px;
}
/* Lists */
ul, ol {
margin-left: 20px;
margin-bottom: 15px;
}
li {
margin-bottom: 8px;
}
/* Equations */
.equation {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
border-radius: 8px;
font-family: ‘Courier New’, monospace;
font-size: 1.1em;
color: #4ecdc4;
margin: 10px 0;
border-left: 4px solid #00d4ff;
}
/* Warning/Important boxes */
.warning {
background: linear-gradient(135deg, rgba(255,107,107,0.2) 0%, rgba(255,107,107,0.1) 100%);
border: 1px solid #ff6b6b;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.warning h4 {
color: #ff6b6b;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.tip {
background: linear-gradient(135deg, rgba(78,205,196,0.2) 0%, rgba(78,205,196,0.1) 100%);
border: 1px solid #4ecdc4;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.tip h4 {
color: #4ecdc4;
margin-bottom: 10px;
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
th, td {
padding: 12px 15px;
text-align: left;
border: 1px solid rgba(0,212,255,0.2);
}
th {
background: rgba(0,212,255,0.2);
color: #00d4ff;
font-weight: 600;
}
tr:nth-child(even) {
background: rgba(0,0,0,0.2);
}
/* Quiz Section */
.quiz-question {
background: rgba(0,0,0,0.3);
border-radius: 10px;
padding: 20px;
margin: 15px 0;
}
.quiz-question p {
font-weight: 600;
color: #fff;
margin-bottom: 15px;
}
.quiz-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.quiz-option {
padding: 12px 15px;
background: rgba(0,212,255,0.1);
border: 2px solid transparent;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.quiz-option:hover {
background: rgba(0,212,255,0.2);
border-color: rgba(0,212,255,0.3);
}
.quiz-option.selected {
border-color: #00d4ff;
background: rgba(0,212,255,0.2);
}
.quiz-option.correct {
border-color: #4ecdc4;
background: rgba(78,205,196,0.3);
}
.quiz-option.incorrect {
border-color: #ff6b6b;
background: rgba(255,107,107,0.3);
}
.check-btn {
margin-top: 15px;
padding: 12px 30px;
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
border: none;
border-radius: 8px;
color: #1a1a2e;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.check-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,212,255,0.4);
}
.feedback {
margin-top: 15px;
padding: 15px;
border-radius: 8px;
display: none;
}
.feedback.show {
display: block;
}
.feedback.correct {
background: rgba(78,205,196,0.2);
border: 1px solid #4ecdc4;
color: #4ecdc4;
}
.feedback.incorrect {
background: rgba(255,107,107,0.2);
border: 1px solid #ff6b6b;
color: #ff6b6b;
}
/* Graph Descriptions */
.graph-box {
display: inline-block;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(0,212,255,0.3);
border-radius: 8px;
padding: 15px;
margin: 10px;
text-align: center;
min-width: 150px;
}
.graph-box .label {
font-size: 0.9em;
color: #a0a0a0;
margin-top: 8px;
}
/* Responsive */
@media (max-width: 768px) {
.tab-btn {
min-width: 80px;
padding: 10px 15px;
font-size: 0.85em;
}
header h1 {
font-size: 1.8em;
}
.card {
padding: 15px;
}
}
/* Print styles */
@media print {
body {
background: white;
color: black;
}
.tab-nav {
display: none;
}
.tab-content {
display: block !important;
}
.expandable-content {
max-height: none !important;
}
}
/* Highlight */
.highlight {
color: #00d4ff;
font-weight: 600;
}
.highlight-warn {
color: #ff6b6b;
font-weight: 600;
}
.highlight-success {
color: #4ecdc4;
font-weight: 600;
}
/* Progress tracker */
.progress-bar {
background: rgba(0,0,0,0.3);
border-radius: 10px;
height: 10px;
margin: 20px 0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #00d4ff, #4ecdc4);
border-radius: 10px;
transition: width 0.5s ease;
}
🔬 Physics Study Guide
Units 1-5: Energy, Motion, and Forces
⚡ Unit 1: Energy
Energy is the ability to cause a change. It’s not a “thing” itself, but a property of objects in a system.
🚗 Unit 2: Constant Velocity
🚀 Unit 3: Uniformly Accelerated Motion
🚨 CRITICAL MISCONCEPTION 🚨
“Positive acceleration means speeding up” — THIS IS FALSE!
What ACTUALLY determines speeding up vs. slowing down:
- SPEEDING UP: Velocity and acceleration have the SAME sign
- SLOWING DOWN: Velocity and acceleration have OPPOSITE signs
| Velocity | Acceleration | Result |
|---|---|---|
| +5 m/s | +2 m/s² | SPEEDING UP |
| −5 m/s | −2 m/s² | SPEEDING UP |
| +5 m/s | −2 m/s² | SLOWING DOWN |
| −5 m/s | +2 m/s² | SLOWING DOWN |
Avoid the term “deceleration” — it causes confusion!
⚖️ Unit 4: Balanced Forces
🚨 INERTIA IS NOT A FORCE! 🚨
Inertia is the tendency of an object to resist changes in motion. It is a property, not a force.
NEVER include “inertia” in a force diagram!
💥 Unit 5: Unbalanced Forces (Newton’s 2nd Law)
🔗 The Big Connection: Forces ↔ Motion ↔ Energy
- Balanced forces → Constant velocity (or rest)
- Unbalanced forces → Acceleration
- Forces through distance → Energy transfer (Working)
🎯 Self-Quiz
Test your understanding! Click on your answer, then check.
1. A ball is dropped from rest. As it falls (ignoring air resistance), which describes the energy changes?
2. On a position vs. time graph, a straight line with negative slope means:
3. An object has velocity = −8 m/s and acceleration = +2 m/s². The object is:
4. A book sits motionless on a table. The forces on the book are:
5. A person stands on a scale in an elevator. The scale reads MORE than their normal weight. The elevator is:
6. Which of the following is NOT a force?
7. The area under a velocity-time graph represents:
8. A cart is pushed up a ramp toward a motion detector at the top. After the push, while the cart is on the ramp, the acceleration is:
📋 Formula Sheet
Kinematics (Motion)
| Quantity | Formula | Graph Connection |
|---|---|---|
| Velocity | v = Δx / Δt | Slope of x-t graph |
| Acceleration | a = Δv / Δt | Slope of v-t graph |
| Displacement | Δx = vΔt (constant v) Δx = viΔt + ½a(Δt)² |
Area under v-t graph |
| Final velocity | vf = vi + aΔt | — |
| Average velocity | v̄ = (vi + vf) / 2 | Only for constant a |
Forces (Dynamics)
| Quantity | Formula |
|---|---|
| Weight (gravitational force) | Fg = mg |
| Newton’s 2nd Law | ΣF = ma |
| Equilibrium | ΣF = 0 |
| Spring force | F = kx |
Energy
| Type | Formula |
|---|---|
| Gravitational potential energy | Eg = mgh |
| Elastic potential energy | Ee = ½kx² |
| Conservation of energy | Einitial + Ein = Efinal + Eout |
| 1st Law of Thermodynamics | ΔEsystem = W + Q + R |
Momentum
| Quantity | Formula |
|---|---|
| Momentum | p = mv |
| Conservation | p1i + p2i = p1f + p2f |
Constants
// Tab switching
document.querySelectorAll(‘.tab-btn’).forEach(btn => {
btn.addEventListener(‘click’, () => {
// Remove active from all tabs and content
document.querySelectorAll(‘.tab-btn’).forEach(b => b.classList.remove(‘active’));
document.querySelectorAll(‘.tab-content’).forEach(c => c.classList.remove(‘active’));
// Add active to clicked tab and corresponding content
btn.classList.add(‘active’);
document.getElementById(btn.dataset.tab).classList.add(‘active’);
});
});
// Expandable sections
document.querySelectorAll(‘.expandable-header’).forEach(header => {
header.addEventListener(‘click’, () => {
header.parentElement.classList.toggle(‘open’);
});
});
// Quiz functionality
document.querySelectorAll(‘.quiz-option’).forEach(option => {
option.addEventListener(‘click’, () => {
// Remove selected from siblings
option.parentElement.querySelectorAll(‘.quiz-option’).forEach(o => {
o.classList.remove(‘selected’, ‘correct’, ‘incorrect’);
});
option.classList.add(‘selected’);
// Hide feedback
option.closest(‘.quiz-question’).querySelector(‘.feedback’).classList.remove(‘show’);
});
});
function checkAnswer(btn) {
const question = btn.closest(‘.quiz-question’);
const correct = question.dataset.correct;
const selected = question.querySelector(‘.quiz-option.selected’);
const feedback = question.querySelector(‘.feedback’);
if (!selected) {
feedback.textContent = ‘Please select an answer first!’;
feedback.className = ‘feedback show incorrect’;
return;
}
const selectedValue = selected.dataset.value;
if (selectedValue === correct) {
selected.classList.add(‘correct’);
feedback.textContent = ‘✓ Correct! Great job!’;
feedback.className = ‘feedback show correct’;
} else {
selected.classList.add(‘incorrect’);
// Highlight correct answer
question.querySelectorAll(‘.quiz-option’).forEach(o => {
if (o.dataset.value === correct) {
o.classList.add(‘correct’);
}
});
feedback.textContent = ‘✗ Not quite. The correct answer is highlighted in green.’;
feedback.className = ‘feedback show incorrect’;
}
}
Physics Study Guide – Units 1-5
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
min-height: 100vh;
color: #e8e8e8;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 30px 0;
background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
border-radius: 15px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
header h1 {
font-size: 2.5em;
color: #00d4ff;
text-shadow: 0 0 20px rgba(0,212,255,0.5);
margin-bottom: 10px;
}
header p {
color: #a0a0a0;
font-size: 1.1em;
}
/* Tab Navigation */
.tab-nav {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-bottom: 20px;
background: #0f3460;
padding: 10px;
border-radius: 10px;
}
.tab-btn {
flex: 1;
min-width: 120px;
padding: 12px 20px;
border: none;
background: #1a1a2e;
color: #a0a0a0;
cursor: pointer;
border-radius: 8px;
font-size: 0.95em;
font-weight: 600;
transition: all 0.3s ease;
}
.tab-btn:hover {
background: #2a2a4e;
color: #00d4ff;
}
.tab-btn.active {
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
color: #1a1a2e;
box-shadow: 0 5px 15px rgba(0,212,255,0.3);
}
/* Tab Content */
.tab-content {
display: none;
animation: fadeIn 0.4s ease;
}
.tab-content.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Cards */
.card {
background: linear-gradient(135deg, #1e3a5f 0%, #16213e 100%);
border-radius: 15px;
padding: 25px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
border: 1px solid rgba(0,212,255,0.1);
}
.card h2 {
color: #00d4ff;
margin-bottom: 15px;
font-size: 1.5em;
display: flex;
align-items: center;
gap: 10px;
}
.card h3 {
color: #4ecdc4;
margin: 20px 0 10px 0;
font-size: 1.2em;
}
/* Expandable Sections */
.expandable {
margin: 10px 0;
border: 1px solid rgba(0,212,255,0.2);
border-radius: 10px;
overflow: hidden;
}
.expandable-header {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s ease;
}
.expandable-header:hover {
background: rgba(0,212,255,0.2);
}
.expandable-header h4 {
color: #00d4ff;
font-size: 1.1em;
}
.expandable-icon {
font-size: 1.5em;
color: #00d4ff;
transition: transform 0.3s ease;
}
.expandable.open .expandable-icon {
transform: rotate(45deg);
}
.expandable-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
background: rgba(0,0,0,0.2);
}
.expandable.open .expandable-content {
max-height: 2000px;
}
.expandable-inner {
padding: 20px;
}
/* Lists */
ul, ol {
margin-left: 20px;
margin-bottom: 15px;
}
li {
margin-bottom: 8px;
}
/* Equations */
.equation {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
border-radius: 8px;
font-family: ‘Courier New’, monospace;
font-size: 1.1em;
color: #4ecdc4;
margin: 10px 0;
border-left: 4px solid #00d4ff;
}
/* Warning/Important boxes */
.warning {
background: linear-gradient(135deg, rgba(255,107,107,0.2) 0%, rgba(255,107,107,0.1) 100%);
border: 1px solid #ff6b6b;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.warning h4 {
color: #ff6b6b;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.tip {
background: linear-gradient(135deg, rgba(78,205,196,0.2) 0%, rgba(78,205,196,0.1) 100%);
border: 1px solid #4ecdc4;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.tip h4 {
color: #4ecdc4;
margin-bottom: 10px;
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
th, td {
padding: 12px 15px;
text-align: left;
border: 1px solid rgba(0,212,255,0.2);
}
th {
background: rgba(0,212,255,0.2);
color: #00d4ff;
font-weight: 600;
}
tr:nth-child(even) {
background: rgba(0,0,0,0.2);
}
/* Quiz Section */
.quiz-question {
background: rgba(0,0,0,0.3);
border-radius: 10px;
padding: 20px;
margin: 15px 0;
}
.quiz-question p {
font-weight: 600;
color: #fff;
margin-bottom: 15px;
}
.quiz-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.quiz-option {
padding: 12px 15px;
background: rgba(0,212,255,0.1);
border: 2px solid transparent;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.quiz-option:hover {
background: rgba(0,212,255,0.2);
border-color: rgba(0,212,255,0.3);
}
.quiz-option.selected {
border-color: #00d4ff;
background: rgba(0,212,255,0.2);
}
.quiz-option.correct {
border-color: #4ecdc4;
background: rgba(78,205,196,0.3);
}
.quiz-option.incorrect {
border-color: #ff6b6b;
background: rgba(255,107,107,0.3);
}
.check-btn {
margin-top: 15px;
padding: 12px 30px;
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
border: none;
border-radius: 8px;
color: #1a1a2e;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.check-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,212,255,0.4);
}
.feedback {
margin-top: 15px;
padding: 15px;
border-radius: 8px;
display: none;
}
.feedback.show {
display: block;
}
.feedback.correct {
background: rgba(78,205,196,0.2);
border: 1px solid #4ecdc4;
color: #4ecdc4;
}
.feedback.incorrect {
background: rgba(255,107,107,0.2);
border: 1px solid #ff6b6b;
color: #ff6b6b;
}
/* Graph Descriptions */
.graph-box {
display: inline-block;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(0,212,255,0.3);
border-radius: 8px;
padding: 15px;
margin: 10px;
text-align: center;
min-width: 150px;
}
.graph-box .label {
font-size: 0.9em;
color: #a0a0a0;
margin-top: 8px;
}
/* Responsive */
@media (max-width: 768px) {
.tab-btn {
min-width: 80px;
padding: 10px 15px;
font-size: 0.85em;
}
header h1 {
font-size: 1.8em;
}
.card {
padding: 15px;
}
}
/* Print styles */
@media print {
body {
background: white;
color: black;
}
.tab-nav {
display: none;
}
.tab-content {
display: block !important;
}
.expandable-content {
max-height: none !important;
}
}
/* Highlight */
.highlight {
color: #00d4ff;
font-weight: 600;
}
.highlight-warn {
color: #ff6b6b;
font-weight: 600;
}
.highlight-success {
color: #4ecdc4;
font-weight: 600;
}
/* Progress tracker */
.progress-bar {
background: rgba(0,0,0,0.3);
border-radius: 10px;
height: 10px;
margin: 20px 0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #00d4ff, #4ecdc4);
border-radius: 10px;
transition: width 0.5s ease;
}
🔬 Physics Study Guide
Units 1-5: Energy, Motion, and Forces
⚡ Unit 1: Energy
Energy is the ability to cause a change. It’s not a “thing” itself, but a property of objects in a system.
🚗 Unit 2: Constant Velocity
🚀 Unit 3: Uniformly Accelerated Motion
🚨 CRITICAL MISCONCEPTION 🚨
“Positive acceleration means speeding up” — THIS IS FALSE!
What ACTUALLY determines speeding up vs. slowing down:
- SPEEDING UP: Velocity and acceleration have the SAME sign
- SLOWING DOWN: Velocity and acceleration have OPPOSITE signs
| Velocity | Acceleration | Result |
|---|---|---|
| +5 m/s | +2 m/s² | SPEEDING UP |
| −5 m/s | −2 m/s² | SPEEDING UP |
| +5 m/s | −2 m/s² | SLOWING DOWN |
| −5 m/s | +2 m/s² | SLOWING DOWN |
Avoid the term “deceleration” — it causes confusion!
⚖️ Unit 4: Balanced Forces
🚨 INERTIA IS NOT A FORCE! 🚨
Inertia is the tendency of an object to resist changes in motion. It is a property, not a force.
NEVER include “inertia” in a force diagram!
💥 Unit 5: Unbalanced Forces (Newton’s 2nd Law)
🔗 The Big Connection: Forces ↔ Motion ↔ Energy
- Balanced forces → Constant velocity (or rest)
- Unbalanced forces → Acceleration
- Forces through distance → Energy transfer (Working)
🎯 Self-Quiz
Test your understanding! Click on your answer, then check.
1. A ball is dropped from rest. As it falls (ignoring air resistance), which describes the energy changes?
2. On a position vs. time graph, a straight line with negative slope means:
3. An object has velocity = −8 m/s and acceleration = +2 m/s². The object is:
4. A book sits motionless on a table. The forces on the book are:
5. A person stands on a scale in an elevator. The scale reads MORE than their normal weight. The elevator is:
6. Which of the following is NOT a force?
7. The area under a velocity-time graph represents:
8. A cart is pushed up a ramp toward a motion detector at the top. After the push, while the cart is on the ramp, the acceleration is:
📋 Formula Sheet
Kinematics (Motion)
| Quantity | Formula | Graph Connection |
|---|---|---|
| Velocity | v = Δx / Δt | Slope of x-t graph |
| Acceleration | a = Δv / Δt | Slope of v-t graph |
| Displacement | Δx = vΔt (constant v) Δx = viΔt + ½a(Δt)² |
Area under v-t graph |
| Final velocity | vf = vi + aΔt | — |
| Average velocity | v̄ = (vi + vf) / 2 | Only for constant a |
Forces (Dynamics)
| Quantity | Formula |
|---|---|
| Weight (gravitational force) | Fg = mg |
| Newton’s 2nd Law | ΣF = ma |
| Equilibrium | ΣF = 0 |
| Spring force | F = kx |
Energy
| Type | Formula |
|---|---|
| Gravitational potential energy | Eg = mgh |
| Elastic potential energy | Ee = ½kx² |
| Conservation of energy | Einitial + Ein = Efinal + Eout |
| 1st Law of Thermodynamics | ΔEsystem = W + Q + R |
Momentum
| Quantity | Formula |
|---|---|
| Momentum | p = mv |
| Conservation | p1i + p2i = p1f + p2f |
Constants
// Tab switching
document.querySelectorAll(‘.tab-btn’).forEach(btn => {
btn.addEventListener(‘click’, () => {
// Remove active from all tabs and content
document.querySelectorAll(‘.tab-btn’).forEach(b => b.classList.remove(‘active’));
document.querySelectorAll(‘.tab-content’).forEach(c => c.classList.remove(‘active’));
// Add active to clicked tab and corresponding content
btn.classList.add(‘active’);
document.getElementById(btn.dataset.tab).classList.add(‘active’);
});
});
// Expandable sections
document.querySelectorAll(‘.expandable-header’).forEach(header => {
header.addEventListener(‘click’, () => {
header.parentElement.classList.toggle(‘open’);
});
});
// Quiz functionality
document.querySelectorAll(‘.quiz-option’).forEach(option => {
option.addEventListener(‘click’, () => {
// Remove selected from siblings
option.parentElement.querySelectorAll(‘.quiz-option’).forEach(o => {
o.classList.remove(‘selected’, ‘correct’, ‘incorrect’);
});
option.classList.add(‘selected’);
// Hide feedback
option.closest(‘.quiz-question’).querySelector(‘.feedback’).classList.remove(‘show’);
});
});
function checkAnswer(btn) {
const question = btn.closest(‘.quiz-question’);
const correct = question.dataset.correct;
const selected = question.querySelector(‘.quiz-option.selected’);
const feedback = question.querySelector(‘.feedback’);
if (!selected) {
feedback.textContent = ‘Please select an answer first!’;
feedback.className = ‘feedback show incorrect’;
return;
}
const selectedValue = selected.dataset.value;
if (selectedValue === correct) {
selected.classList.add(‘correct’);
feedback.textContent = ‘✓ Correct! Great job!’;
feedback.className = ‘feedback show correct’;
} else {
selected.classList.add(‘incorrect’);
// Highlight correct answer
question.querySelectorAll(‘.quiz-option’).forEach(o => {
if (o.dataset.value === correct) {
Physics Study Guide – Units 1-5
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
min-height: 100vh;
color: #e8e8e8;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 30px 0;
background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
border-radius: 15px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
header h1 {
font-size: 2.5em;
color: #00d4ff;
text-shadow: 0 0 20px rgba(0,212,255,0.5);
margin-bottom: 10px;
}
header p {
color: #a0a0a0;
font-size: 1.1em;
}
/* Tab Navigation */
.tab-nav {
display: flex;
flex-wrap: wrap;
gap: 5px;
margin-bottom: 20px;
background: #0f3460;
padding: 10px;
border-radius: 10px;
}
.tab-btn {
flex: 1;
min-width: 120px;
padding: 12px 20px;
border: none;
background: #1a1a2e;
color: #a0a0a0;
cursor: pointer;
border-radius: 8px;
font-size: 0.95em;
font-weight: 600;
transition: all 0.3s ease;
}
.tab-btn:hover {
background: #2a2a4e;
color: #00d4ff;
}
.tab-btn.active {
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
color: #1a1a2e;
box-shadow: 0 5px 15px rgba(0,212,255,0.3);
}
/* Tab Content */
.tab-content {
display: none;
animation: fadeIn 0.4s ease;
}
.tab-content.active {
display: block;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
/* Cards */
.card {
background: linear-gradient(135deg, #1e3a5f 0%, #16213e 100%);
border-radius: 15px;
padding: 25px;
margin-bottom: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
border: 1px solid rgba(0,212,255,0.1);
}
.card h2 {
color: #00d4ff;
margin-bottom: 15px;
font-size: 1.5em;
display: flex;
align-items: center;
gap: 10px;
}
.card h3 {
color: #4ecdc4;
margin: 20px 0 10px 0;
font-size: 1.2em;
}
/* Expandable Sections */
.expandable {
margin: 10px 0;
border: 1px solid rgba(0,212,255,0.2);
border-radius: 10px;
overflow: hidden;
}
.expandable-header {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s ease;
}
.expandable-header:hover {
background: rgba(0,212,255,0.2);
}
.expandable-header h4 {
color: #00d4ff;
font-size: 1.1em;
}
.expandable-icon {
font-size: 1.5em;
color: #00d4ff;
transition: transform 0.3s ease;
}
.expandable.open .expandable-icon {
transform: rotate(45deg);
}
.expandable-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s ease;
background: rgba(0,0,0,0.2);
}
.expandable.open .expandable-content {
max-height: 2000px;
}
.expandable-inner {
padding: 20px;
}
/* Lists */
ul, ol {
margin-left: 20px;
margin-bottom: 15px;
}
li {
margin-bottom: 8px;
}
/* Equations */
.equation {
background: rgba(0,212,255,0.1);
padding: 15px 20px;
border-radius: 8px;
font-family: ‘Courier New’, monospace;
font-size: 1.1em;
color: #4ecdc4;
margin: 10px 0;
border-left: 4px solid #00d4ff;
}
/* Warning/Important boxes */
.warning {
background: linear-gradient(135deg, rgba(255,107,107,0.2) 0%, rgba(255,107,107,0.1) 100%);
border: 1px solid #ff6b6b;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.warning h4 {
color: #ff6b6b;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.tip {
background: linear-gradient(135deg, rgba(78,205,196,0.2) 0%, rgba(78,205,196,0.1) 100%);
border: 1px solid #4ecdc4;
border-radius: 10px;
padding: 15px 20px;
margin: 15px 0;
}
.tip h4 {
color: #4ecdc4;
margin-bottom: 10px;
}
/* Tables */
table {
width: 100%;
border-collapse: collapse;
margin: 15px 0;
}
th, td {
padding: 12px 15px;
text-align: left;
border: 1px solid rgba(0,212,255,0.2);
}
th {
background: rgba(0,212,255,0.2);
color: #00d4ff;
font-weight: 600;
}
tr:nth-child(even) {
background: rgba(0,0,0,0.2);
}
/* Quiz Section */
.quiz-question {
background: rgba(0,0,0,0.3);
border-radius: 10px;
padding: 20px;
margin: 15px 0;
}
.quiz-question p {
font-weight: 600;
color: #fff;
margin-bottom: 15px;
}
.quiz-options {
display: flex;
flex-direction: column;
gap: 10px;
}
.quiz-option {
padding: 12px 15px;
background: rgba(0,212,255,0.1);
border: 2px solid transparent;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
}
.quiz-option:hover {
background: rgba(0,212,255,0.2);
border-color: rgba(0,212,255,0.3);
}
.quiz-option.selected {
border-color: #00d4ff;
background: rgba(0,212,255,0.2);
}
.quiz-option.correct {
border-color: #4ecdc4;
background: rgba(78,205,196,0.3);
}
.quiz-option.incorrect {
border-color: #ff6b6b;
background: rgba(255,107,107,0.3);
}
.check-btn {
margin-top: 15px;
padding: 12px 30px;
background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
border: none;
border-radius: 8px;
color: #1a1a2e;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.check-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,212,255,0.4);
}
.feedback {
margin-top: 15px;
padding: 15px;
border-radius: 8px;
display: none;
}
.feedback.show {
display: block;
}
.feedback.correct {
background: rgba(78,205,196,0.2);
border: 1px solid #4ecdc4;
color: #4ecdc4;
}
.feedback.incorrect {
background: rgba(255,107,107,0.2);
border: 1px solid #ff6b6b;
color: #ff6b6b;
}
/* Graph Descriptions */
.graph-box {
display: inline-block;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(0,212,255,0.3);
border-radius: 8px;
padding: 15px;
margin: 10px;
text-align: center;
min-width: 150px;
}
.graph-box .label {
font-size: 0.9em;
color: #a0a0a0;
margin-top: 8px;
}
/* Responsive */
@media (max-width: 768px) {
.tab-btn {
min-width: 80px;
padding: 10px 15px;
font-size: 0.85em;
}
header h1 {
font-size: 1.8em;
}
.card {
padding: 15px;
}
}
/* Print styles */
@media print {
body {
background: white;
color: black;
}
.tab-nav {
display: none;
}
.tab-content {
display: block !important;
}
.expandable-content {
max-height: none !important;
}
}
/* Highlight */
.highlight {
color: #00d4ff;
font-weight: 600;
}
.highlight-warn {
color: #ff6b6b;
font-weight: 600;
}
.highlight-success {
color: #4ecdc4;
font-weight: 600;
}
/* Progress tracker */
.progress-bar {
background: rgba(0,0,0,0.3);
border-radius: 10px;
height: 10px;
margin: 20px 0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #00d4ff, #4ecdc4);
border-radius: 10px;
transition: width 0.5s ease;
}
🔬 Physics Study Guide
Units 1-5: Energy, Motion, and Forces
⚡ Unit 1: Energy
Energy is the ability to cause a change. It’s not a “thing” itself, but a property of objects in a system.
🚗 Unit 2: Constant Velocity
🚀 Unit 3: Uniformly Accelerated Motion
🚨 CRITICAL MISCONCEPTION 🚨
“Positive acceleration means speeding up” — THIS IS FALSE!
What ACTUALLY determines speeding up vs. slowing down:
- SPEEDING UP: Velocity and acceleration have the SAME sign
- SLOWING DOWN: Velocity and acceleration have OPPOSITE signs
| Velocity | Acceleration | Result |
|---|---|---|
| +5 m/s | +2 m/s² | SPEEDING UP |
| −5 m/s | −2 m/s² | SPEEDING UP |
| +5 m/s | −2 m/s² | SLOWING DOWN |
| −5 m/s | +2 m/s² | SLOWING DOWN |
Avoid the term “deceleration” — it causes confusion!
⚖️ Unit 4: Balanced Forces
🚨 INERTIA IS NOT A FORCE! 🚨
Inertia is the tendency of an object to resist changes in motion. It is a property, not a force.
NEVER include “inertia” in a force diagram!
💥 Unit 5: Unbalanced Forces (Newton’s 2nd Law)
🔗 The Big Connection: Forces ↔ Motion ↔ Energy
- Balanced forces → Constant velocity (or rest)
- Unbalanced forces → Acceleration
- Forces through distance → Energy transfer (Working)
🎯 Self-Quiz
Test your understanding! Click on your answer, then check.
1. A ball is dropped from rest. As it falls (ignoring air resistance), which describes the energy changes?
2. On a position vs. time graph, a straight line with negative slope means:
3. An object has velocity = −8 m/s and acceleration = +2 m/s². The object is:
4. A book sits motionless on a table. The forces on the book are:
5. A person stands on a scale in an elevator. The scale reads MORE than their normal weight. The elevator is:
6. Which of the following is NOT a force?
7. The area under a velocity-time graph represents:
8. A cart is pushed up a ramp toward a motion detector at the top. After the push, while the cart is on the ramp, the acceleration is:
📋 Formula Sheet
Kinematics (Motion)
| Quantity | Formula | Graph Connection |
|---|---|---|
| Velocity | v = Δx / Δt | Slope of x-t graph |
| Acceleration | a = Δv / Δt | Slope of v-t graph |
| Displacement | Δx = vΔt (constant v) Δx = viΔt + ½a(Δt)² |
Area under v-t graph |
| Final velocity | vf = vi + aΔt | — |
| Average velocity | v̄ = (vi + vf) / 2 | Only for constant a |
Forces (Dynamics)
| Quantity | Formula |
|---|---|
| Weight (gravitational force) | Fg = mg |
| Newton’s 2nd Law | ΣF = ma |
| Equilibrium | ΣF = 0 |
| Spring force | F = kx |
Energy
| Type | Formula |
|---|---|
| Gravitational potential energy | Eg = mgh |
| Elastic potential energy | Ee = ½kx² |
| Conservation of energy | Einitial + Ein = Efinal + Eout |
| 1st Law of Thermodynamics | ΔEsystem = W + Q + R |
Momentum
| Quantity | Formula |
|---|---|
| Momentum | p = mv |
| Conservation | p1i + p2i = p1f + p2f |
Constants
// Tab switching
document.querySelectorAll(‘.tab-btn’).forEach(btn => {
btn.addEventListener(‘click’, () => {
// Remove active from all tabs and content
document.querySelectorAll(‘.tab-btn’).forEach(b => b.classList.remove(‘active’));
document.querySelectorAll(‘.tab-content’).forEach(c => c.classList.remove(‘active’));
// Add active to clicked tab and corresponding content
btn.classList.add(‘active’);
document.getElementById(btn.dataset.tab).classList.add(‘active’);
});
});
// Expandable sections
document.querySelectorAll(‘.expandable-header’).forEach(header => {
header.addEventListener(‘click’, () => {
header.parentElement.classList.toggle(‘open’);
});
});
// Quiz functionality
document.querySelectorAll(‘.quiz-option’).forEach(option => {
option.addEventListener(‘click’, () => {
// Remove selected from siblings
option.parentElement.querySelectorAll(‘.quiz-option’).forEach(o => {
o.classList.remove(‘selected’, ‘correct’, ‘incorrect’);
});
option.classList.add(‘selected’);
// Hide feedback
option.closest(‘.quiz-question’).querySelector(‘.feedback’).classList.remove(‘show’);
});
});
function checkAnswer(btn) {
const question = btn.closest(‘.quiz-question’);
const correct = question.dataset.correct;
const selected = question.querySelector(‘.quiz-option.selected’);
const feedback = question.querySelector(‘.feedback’);
if (!selected) {
feedback.textContent = ‘Please select an answer first!’;
feedback.className = ‘feedback show incorrect’;
return;
}
const selectedValue = selected.dataset.value;
if (selectedValue === correct) {
selected.classList.add(‘correct’);
feedback.textContent = ‘✓ Correct! Great job!’;
feedback.className = ‘feedback show correct’;
} else {
selected.classList.add(‘incorrect’);
// Highlight correct answer
question.querySelectorAll(‘.quiz-option’).forEach(o => {
if (o.dataset.value === correct) {
o.classList.add(‘correct’);
}
});
feedback.textContent = ‘✗ Not quite. The correct answer is highlighted in green.’;
feedback.className = ‘feedback show incorrect’;
}
}
o.classList.add(‘correct’);
}
});
feedback.textContent = ‘✗ Not quite. The correct answer is highlighted in green.’;
feedback.className = ‘feedback show incorrect’;
}
}