🔬

Physics Formulas

Verified

by Community

Provides physics formulas for mechanics, thermodynamics, electromagnetism, and optics. Solves problems step by step with unit analysis.

physicsformulassciencecalculations

Physics Formulas Skill

Provides physics formulas across major topics and solves problems step by step with proper unit analysis.

Usage

python3 -c "
# Kinematic equation: v^2 = v0^2 + 2*a*d
v0, a, d = 0, 9.8, 100
v = (v0**2 + 2*a*d)**0.5
print(f'Final velocity: {v:.2f} m/s')
"

Examples

  • "Calculate projectile range" -> Applies kinematic equations with step-by-step solution
  • "What is the gravitational force?" -> Uses F = Gm1m2/r^2 with given values
  • "Convert between energy units" -> Handles joules, eV, calories, and kWh

Guidelines

  • Always include units in calculations and results
  • Show step-by-step work for educational value
  • Verify dimensional analysis for correctness