# What is the rule of three used for?
The simple direct rule of three is the "Swiss army knife" of mathematics. It solves problems where three data points are known and we seek the fourth. If you know the relationship between A and B, and you have a new value C, the calculator finds X instantly.Cooking and Recipes
If the recipe calls for 500g of flour for 4 people, how much do I need for 7?
- (500 × 7) ÷ 4 = 875g
Shopping and Prices
If a pack of 3 cans costs €2.50, how much would 10 cans cost me?
- (2.50 × 10) ÷ 3 = €8.33
Travel and Distance
If I take 45 min to do 60km, how long will it take me to do 140km?
- (45 × 140) ÷ 60 = 105 min
Design and Screens
If the image is 1920px wide and I want to reduce it to 800px maintaining the proportion...
- (OriginalHeight × 800) ÷ 1920 = NewHeight
# How does the formula work?
The formula is always the same: multiply the diagonal values and divide by the remaining one.In the calculator: we multiply value B by value C and divide by A. The result is X.(B × C) ÷ A = X