Ounces to Pounds Converter
Convert ounces to pounds instantly. Useful for weight tracking, shipping, and package sizes.
Formula: oz ÷ 16 = lbs
Common Conversions
How to convert ounces to pounds
Converting ounces to pounds is a single multiplication. The formula is oz ÷ 16 = lbs, which means one ounce equals 0.0625 lbs. Going the other way, one pound equals 16 oz.
The calculator above applies this automatically as you type, but it is worth knowing the arithmetic if you need to sanity-check a figure or work one out without a device to hand.
Worked examples
7 oz to lbs: multiply 7 by 0.0625, which gives 0.4375 lbs.
45 oz to lbs: multiply 45 by 0.0625, which gives 2.8125 lbs.
250 oz to lbs: multiply 250 by 0.0625, which gives 15.625 lbs.
Ounces to Pounds conversion table
The values below are calculated with the same function as the converter above, so they agree to the digit. Use it as a quick reference when you need a rough figure without typing anything.
| Ounces | Pounds |
|---|---|
| 1 oz | 0.0625 lbs |
| 2 oz | 0.125 lbs |
| 3 oz | 0.1875 lbs |
| 4 oz | 0.25 lbs |
| 5 oz | 0.3125 lbs |
| 6 oz | 0.375 lbs |
| 7 oz | 0.4375 lbs |
| 8 oz | 0.5 lbs |
| 9 oz | 0.5625 lbs |
| 10 oz | 0.625 lbs |
| 15 oz | 0.9375 lbs |
| 20 oz | 1.25 lbs |
| 25 oz | 1.5625 lbs |
| 30 oz | 1.875 lbs |
| 40 oz | 2.5 lbs |
| 50 oz | 3.125 lbs |
| 75 oz | 4.6875 lbs |
| 100 oz | 6.25 lbs |
| Pounds | Ounces |
|---|---|
| 1 lbs | 16 oz |
| 5 lbs | 80 oz |
| 10 lbs | 160 oz |
| 25 lbs | 400 oz |
| 50 lbs | 800 oz |
| 100 lbs | 1,600 oz |
| 250 lbs | 4,000 oz |
| 500 lbs | 8,000 oz |
| 1000 lbs | 16,000 oz |
What is a ounce?
An ounce is one sixteenth of a pound, or about 28.35 grams. This is the avoirdupois ounce, used for ordinary weight.
Where the ounce came from
Like the inch, the ounce descends from the Roman uncia, a twelfth part, back when a pound was divided into twelve. The shift to sixteen ounces per pound came with the avoirdupois system adopted for English wool trading in the Middle Ages.
Where ounces are used today
Ounces measure food portions, packaging weights, and postage in the United States. Be careful with fluid ounces, which measure volume and are an entirely different quantity despite the shared name.
- A slice of bread is about 1 oz
- A tennis ball is roughly 2 oz
- A standard letter under 1 oz takes one stamp
What is a pound?
A pound is defined as exactly 0.45359237 kilograms and contains 16 ounces. The abbreviation lb comes from the Latin libra, a Roman unit of weight.
Where the pound came from
The modern avoirdupois pound was standardised in England for general trade, replacing competing troy and tower pounds that had different subdivisions. Troy pounds of 12 ounces are still used for precious metals, which is why gold prices per ounce are not directly comparable to grocery ounces.
Where pounds are used today
Pounds are the standard weight unit in the United States for body weight, groceries, and shipping. The UK uses them alongside kilograms, and body weight there is often given in stones and pounds, with one stone being 14 pounds.
- A loaf of bread is about 1 lb
- A gallon of water weighs roughly 8.34 lb
- A car tire is around 25 lb
When you actually need this conversion
Both units belong to the imperial / us customary family, so this conversion usually comes up when a figure needs restating at a more convenient scale rather than when crossing between systems.
Health tracking and medical records
Body weight is recorded in kilograms in most of the world and pounds in the US. Anyone using an app, a doctor, or a training programme from a different country ends up converting, and medication dosing by body weight makes accuracy matter.
Cooking with international recipes
Recipes written in grams and those written in ounces are not interchangeable by eye. Baking in particular depends on ratios, so an error in converting flour or butter changes the result rather than just the portion size.
Shipping and baggage allowances
Airlines and couriers set limits in kilograms or pounds depending on region, and overweight fees are charged per bag with no rounding in your favour. Checking a suitcase against the right limit before leaving home is cheaper than at the desk.
Fitness and equipment
Gym plates are sold in both kilogram and pound denominations, and strength standards published online rarely state which they mean. Converting keeps a training log consistent when equipment changes.
Accuracy, precision, and rounding
The factor used here (oz ÷ 16 = lbs) is derived from an internationally agreed exact definition, so the conversion itself is not an approximation. The results above are shown to about eight significant figures, which is more precision than almost any practical use requires.
The sensible rule is to round the answer to roughly the same precision as the number you started with. If you measured to the nearest ounce, an answer carrying six decimal places is not more accurate, it just looks more accurate. For most everyday purposes one or two decimal places is plenty.
Common mistakes to avoid
Converting in the wrong direction
Multiplying when you should divide is by far the most common error, and it is easy to miss because the result is still a number in a believable range. A quick check: since one ounce is 0.0625 lbs, a ounce value should get smaller when converted.
Using a rounded factor for a long calculation
Rounding the conversion factor before multiplying, then repeating that across many values, compounds the error. Convert with the full factor and round only the final answer.
Confusing ounces with fluid ounces
An ounce measures weight and a fluid ounce measures volume. They are different quantities that happen to share a name, and they are only numerically close for water. This converter handles weight ounces.
Converting ounces to pounds in a spreadsheet or in code
A one-off answer is what the calculator above is for. When you have a whole column of figures, or you are writing something that has to do the conversion repeatedly, it is worth putting the formula in the tool you are already working in.
Excel and Google Sheets
With your ounce value in cell A1, put this in B1 and fill it down the column:
=A1 * 0.0625
Excel also ships a built-in CONVERT function that handles many unit pairs directly, but it does not cover every unit and its unit codes are easy to mistype. An explicit formula like the one above is harder to get wrong and shows its working.
Python
def oz_to_lbs(value):
return value * 0.0625
print(oz_to_lbs(10))JavaScript
const ozToLbs = (value) => value * 0.0625; console.log(ozToLbs(10));
Store the factor as a named constant rather than typing 0.0625 at each call site. When a figure appears in three places it will eventually be updated in two of them.
The two measurement systems behind this conversion
Both ounces and pounds sit within the imperial / us customary system, so this is a conversion of scale rather than of system. That makes it a straightforward relationship, with none of the historical baggage that comes from reconciling two systems built on different foundations.
Because the units share a system, converting between them rarely introduces the kind of error that catches people out when crossing systems. The main risk is simply moving the decimal point the wrong way.
More questions about ounces and pounds
Is the conversion exact or approximate?
The underlying definition is exact, and the factor shown here (0.0625) is that definition expressed to the precision this page displays. For any everyday purpose the result is exact; only at very high precision would you need more digits of the factor.
Why does the answer have so many decimal places?
The converter shows a high-precision result so that it is never the limiting factor in your calculation. It is up to you to round to something sensible. A measurement taken with a tape measure does not become more accurate because the conversion carried six decimals.
Can I convert in the opposite direction on this page?
Yes. The swap button in the calculator reverses the conversion and carries the current result across as the new input, so you do not have to navigate anywhere or retype anything. The second table above also lists the reverse conversion directly.
Does anything get sent to a server?
No. The arithmetic runs in your browser with a few lines of JavaScript. Nothing you type is uploaded, logged, or stored, which also means the converter keeps working if your connection drops after the page has loaded.
Which figure should I use on an official form?
Use whatever precision the form asks for, and if it does not say, match the precision of the original measurement. For height, weight, and similar personal details, one decimal place is almost always sufficient and often more than is wanted.
Related weight conversions
If you need to go the other way as a starting point rather than as a swap, the Pounds to Ounces converter is the mirror of this page: same factor, same tables, opposite direction. It is the more natural place to start when most of your figures are already in pounds.
Weight figures often need restating at more than one scale, particularly when a recipe or a shipping form mixes large and small quantities:
- KG to LBS - Convert kilograms to pounds instantly. Perfect for fitness, cooking, and shipping calculations.
- Grams to Ounces - Convert grams to ounces quickly. Ideal for cooking recipes and ingredient measurements.
- LBS to KG - Convert pounds to kilograms instantly. Essential for international weight measurements and fitness.
- Ounces to Grams - Convert ounces to grams precisely. Great for cooking, nutrition tracking, and food labels.
- CM to Inches - Convert centimeters to inches instantly. Enter any value and get the exact result in decimal inches.
- Celsius to Fahrenheit - Convert Celsius to Fahrenheit instantly. Essential for weather, cooking, and science.
For anything not listed here, the full converter directory covers over a hundred pairs across length, weight, temperature, volume, area, speed, pressure, energy, and more.
Quick reference
| 1 oz equals | 0.0625 lbs |
| 1 lbs equals | 16 oz |
| Formula | oz ÷ 16 = lbs |
| Ounces system | Imperial / US customary |
| Pounds system | Imperial / US customary |
| Measures | Weight |
Why Use Our Ounces to Pounds Converter?
Instant Results
Type any ounces value and see the pounds result immediately as you type.
Highly Accurate
Uses the exact conversion factor. oz ÷ 16 = lbs
Swap Direction
Easily convert Pounds back to Ounces with the swap button. No need to visit a different page.
One-Click Copy
Copy the converted result to your clipboard instantly with the Copy button.
Common Values Table
See a quick reference table of 9 common ounces values and their pounds equivalents.
100% Private
All conversions happen in your browser. Nothing is sent to a server or stored anywhere.
Frequently Asked Questions
How many pounds in a ounce?
1 oz = 0.0625 lbs. Use the formula: oz ÷ 16 = lbs.
How to convert ounces to pounds?
To convert ounces to pounds, use the formula: oz ÷ 16 = lbs. For example, 48 oz = 3 lbs.
Is this ounces to pounds converter accurate?
Yes. The converter uses the internationally accepted exact conversion factor. The result is accurate to at least 6 significant figures.
Can I convert pounds back to ounces?
Yes. Click the "Swap direction" button to reverse the conversion. The current result becomes the new input automatically.
Does this work on mobile?
Yes. The converter works on all devices, phones, tablets, and desktops. All calculations happen in your browser.
Is my data stored anywhere?
No. All conversions run entirely in your browser. Nothing is uploaded, logged, or stored.
All Tools
Every tool, in one place.
290+ free tools. All run in your browser, no sign-up, no uploads, nothing stored.
Text Tools (24)
View allPDF Tools (16)
View allImage Tools (20)
View allUnit Converters (110)
View allCalculators (34)
View allMedia Tools (30)
View allGames and Puzzles (17)
View allDeveloper Tools (8)
Fun and Random (19)
View allDesign and Color (4)
Time Tools (6)
