Snowboard Speed Estimator Formula

Understand the math behind the snowboard speed estimator. Each variable explained with a worked example.

Formulas Used

Estimated Max Speed

speed_mph = round(speed_mps * 2.237 * 10) / 10

Speed (km/h)

speed_kmh = round(speed_mps * 3.6 * 10) / 10

Vertical Drop

vertical_drop = round(vertical_m * 3.281)

Variables

VariableDescriptionDefault
slope_angle_degSlope Angle(°)20
run_length_mRun Length(meters)500
friction_factorSnow Conditions0.7
vertical_mDerived value= run_length_m * slope_angle_deg / 57.2958calculated
speed_mpsDerived value= sqrt(2 * 9.81 * vertical_m * friction_factor)calculated

How It Works

How Snowboard Speed Is Estimated

Simplified Physics

Speed = sqrt(2 x g x Vertical Drop x Friction Factor)

Where g = 9.81 m/s^2 and the friction factor (0-1) accounts for snow friction and air drag.

Typical Speeds

  • Beginner: 10-20 mph
  • Intermediate: 20-35 mph
  • Advanced: 35-55 mph
  • Professional racing: 70-90 mph
  • Speed record: 157 mph (ski)
  • Factors

    Actual speed varies with wax quality, rider position (tucking vs standing), wind, temperature, and snow type.

    Worked Example

    A 20° groomed slope, 500 m run length.

    slope_angle_deg = 20run_length_m = 500friction_factor = 0.7
    1. 01Vertical drop = 500 x sin(20°) = 500 x 0.349 = 174.5 m.
    2. 02Speed = sqrt(2 x 9.81 x 174.5 x 0.7) = sqrt(2396) = 48.9 m/s.
    3. 03Speed in mph = 48.9 x 2.237 = 109.4 mph.
    4. 04Note: actual speed will be lower due to turning and speed-limiting technique.

    Ready to run the numbers?

    Open Snowboard Speed Estimator