Daily Steps Goal Calculator Formula

Understand the math behind the daily steps goal calculator. Each variable explained with a worked example.

Formulas Used

Daily Steps Goal

step_goal = round(base_goal * fitness_level)

Est. Calories Burned

calories_from_steps = round(base_goal * fitness_level * weight_lbs * 0.000035)

Approximate Distance

distance_miles = round(base_goal * fitness_level) / 2100

Variables

VariableDescriptionDefault
ageAge(years)35
weight_lbsBody Weight(lbs)170
fitness_levelCurrent Fitness Level1
base_goalDerived value= age <= 18 ? 12000 : (age <= 65 ? 10000 : 7500)calculated

How It Works

Personalized Steps Goal

Steps Goal = Base Goal x Fitness Factor

Base Goals by Age

| Age | Base Goal | |---|---| | Under 18 | 12,000 | | 18-65 | 10,000 | | Over 65 | 7,500 |

Recent research suggests that health benefits plateau around 7,500-10,000 steps for most adults. Each 2,100 steps is approximately 1 mile.

Calorie Estimation

Approximately 0.035 calories per step per pound of body weight.

Worked Example

A 35-year-old, 170 lbs, average fitness.

age = 35weight_lbs = 170fitness_level = 1
  1. 01Base goal (18-65) = 10,000
  2. 02Adjusted = 10,000 x 1.0 = 10,000 steps
  3. 03Calories = 10,000 x 170 x 0.000035 = 60 kcal
  4. 04Distance = 10,000 / 2,100 = 4.8 miles

Ready to run the numbers?

Open Daily Steps Goal Calculator