Convert calories to weight - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T16:14:36Z http://stackoverflow.com/feeds/question/233088 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/233088/convert-calories-to-weight 2 Convert calories to weight Stewart Johnson 2008-10-24T11:02:29Z 2008-10-24T12:15:27Z <p>The fundamental equation of weight loss/gain is:</p> <pre><code>weight_change = convert_to_weight_diff(calories_consumed - calories_burnt); </code></pre> <p>I'm going on a health kick, and like a good nerd I thought I'd start keeping track of these things and write some software to process my data. I'm not attentive and disciplined enough to count calories in food, so I thought I'd work backwards:</p> <ul> <li>I can weigh myself every day</li> <li>I can calculate my BMR and hence how many calories I burn doing nothing all day</li> <li>I can use my heart-rate monitor to figure out how many calories I burn doing exercise</li> </ul> <p>That way I can generate an approximate "calories consumed" graph based on my exercise and weight records, and use that to motivate myself when I'm tempted to have a donut.</p> <p>The thing I'm stuck on is the function:</p> <pre><code>int convert_to_weight_diff(int calorie_diff); </code></pre> <p>Anybody know the pseudo-code for that function? If you've got some details, make sure you specify if we're talking calories, Calories, kilojoules, pounds, kilograms, etc.</p> <p>Thanks! </p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233096#233096 5 Answer by Ken for Convert calories to weight Ken 2008-10-24T11:05:50Z 2008-10-24T11:08:08Z <p>Look at <a href="http://www.fourmilab.ch/hackdiet/www/hackdiet.html" rel="nofollow">The Hacker's Diet</a> and <a href="http://www.physicsdiet.com/" rel="nofollow">physicsdiet.com</a> - this wheel has already been invented.</p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233099#233099 0 Answer by One Monkey for Convert calories to weight One Monkey 2008-10-24T11:08:40Z 2008-10-24T11:08:40Z <p>I dunno how accurate this is because it's Wikipedia but it looks like a good basis for a rule-of-thumb-o-meter.</p> <p><a href="http://en.wikipedia.org/wiki/Food_energy" rel="nofollow">http://en.wikipedia.org/wiki/Food_energy</a></p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233101#233101 2 Answer by Greg Hewgill for Convert calories to weight Greg Hewgill 2008-10-24T11:08:46Z 2008-10-24T11:08:46Z <p>I think the conversion factor is about 3500 calories per pound. Google search (not the calculator!) seems to agree: <a href="http://www.google.com/search?q=calories+per+pound" rel="nofollow">http://www.google.com/search?q=calories+per+pound</a></p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233115#233115 0 Answer by Markus Lux for Convert calories to weight Markus Lux 2008-10-24T11:12:51Z 2008-10-24T11:12:51Z <p>As you will only burn fat, the conversation is as follows:</p> <p>To burn 1g of fat you'll have to work out 9kcal.</p> <p>Source: <a href="http://en.wikipedia.org/wiki/Food_energy" rel="nofollow">http://en.wikipedia.org/wiki/Food_energy</a></p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233239#233239 0 Answer by Nic Wise for Convert calories to weight Nic Wise 2008-10-24T12:10:10Z 2008-10-24T12:10:10Z <p>I think everyone else has summed it up well, however there is something (maybe more) that you have forgotten:</p> <p>water and stimulants (your a developer right, so caffeine is a standard drug, like Spice is in dune)</p> <p>For example, if I have 2000cal of food in a day, and thru metabolism and exercise I burn 1750 (I get stuff all exercise at the moment, should be 2500 or so), I have 350cal left, which goes as fat, so I'm about +50 grams (were 3500 cals == about 500g of fat. Not sure if thats right, but lets go with it for the moment)</p> <p>If I do the exact same thing tomorrow, but I have 2 cups of coffee (keep in mind my coffee of choice is Espresso with nothing else in it, so close to zero cals), I have to take two things into account:</p> <ul> <li>caffeine ups my metabolism, so I burn more - so my burn may be +100cals </li> <li>caffeine is a diuretic, so I'll lose more water - so my WEIGHT will be down maybe -200g, depending on my bodys reaction to it.</li> </ul> <p>So, I think for a basic idea, your proposal is a good one, but once you start getting more specific, it gets NASTY complex.</p> <p>Another example: If you are doing exercise, and burn 500cals during a RUN, you will continue to burn cals for a number of hours after. If you burn 200 cals thru weight training, you'll do the same post-exercise burn (maybe more), and your baseline metabolic burn (how much you burn if you just sit on your backside) will be higher until that muscle atrophies back to whatever it was before.</p> <p>I think you are right tho - not really a SO question, but fun none the less.</p> http://stackoverflow.com/questions/233088/convert-calories-to-weight/233254#233254 0 Answer by Dan for Convert calories to weight Dan 2008-10-24T12:15:27Z 2008-10-24T12:15:27Z <p>I would add that you find a different measurement than BMI into your considerations because it doesn't take body composition into consideration. For example, I remember seeing an article about Evander Holyfield being considered "dangerously obese" based on his high BMI. He looked like he had barely an ounce of fat on him. Anyway, just a consideration.</p>