Physics Applications

Example 1: Free Fall Motion

Problem: An object falls from a height of 100 meters. Calculate its velocity upon impact. (g = 9.8 m/s²)

Formula:v = √(2gh)

Input: sqrt(2 * 9.8 * 100)
Result: 44.27 m/s
Example 2: Projectile Motion Range

Problem: An object is launched at 30° with an initial velocity of 20 m/s. Calculate the horizontal range.

Formula:R = v²sin(2θ)/g

Mode: DEG
Input: 20^2 * sin(2 * 30) / 9.8
Result: 35.35 m
Example 3: Circular Motion Period

Problem: A circular motion with radius 2 meters and velocity 5 m/s. Calculate the period.

Formula:T = 2πr/v

Input: 2 * pi * 2 / 5
Result: 2.51 s

Chemistry Applications

Example 4: Solution Dilution

Problem: Dilute 500 mL of 2M solution to 2L. Calculate the final concentration.

Formula:C₁V₁ = C₂V₂

Input: 2 * 500 / 2000
Result: 0.5 M
Example 5: pH Value Calculation

Problem: Given H⁺ concentration of 0.001 M, calculate the pH value.

Formula:pH = -log[H⁺]

Input: -log(0.001)
Result: 3

Engineering Applications

Example 6: Parallel Resistors

Problem: Three resistors of 100Ω, 200Ω, and 300Ω are connected in parallel. Calculate the total resistance.

Formula:1/R = 1/R₁ + 1/R₂ + 1/R₃

Input: 1 / (1/100 + 1/200 + 1/300)
Result: 54.55 Ω
Example 7: Beam Bending Stress

Problem: A simply supported beam with 4m span, center load of 10000N, and section modulus of 0.0001m³. Calculate maximum bending stress.

Formula:σ = FL/(4Z)

Input: 10000 * 4 / (4 * 0.0001)
Result: 100,000,000 Pa (100 MPa)

Finance Applications

Example 8: Compound Interest

Problem: Principal of $10,000, annual interest rate of 5%, calculate the future value after 10 years.

Formula:A = P(1 + r)ⁿ

Input: 10000 * (1 + 0.05)^10
Result: $16,288.95
Example 9: Monthly Loan Payment

Problem: Loan of $500,000, annual interest rate 4.9%, term 30 years. Calculate monthly payment.

Formula:M = P[r(1+r)ⁿ]/[(1+r)ⁿ-1]

Input: 500000 * (0.049/12 * (1 + 0.049/12)^360) / ((1 + 0.049/12)^360 - 1)
Result: $2,653.63/month

Mathematics Applications

Example 10: Combinations

Problem: Calculate the number of ways to choose 3 people from a group of 10.

Formula:C(n,r) = n!/[r!(n-r)!]

Input: 10! / (3! * 7!)
Result: 120 ways