how to calculate your bodyfat (DEFINITIVE GUIDE)

Lorsss

Lorsss

mod. Username: Lorsss
Staff
Joined
Sep 19, 2018
Posts
10,745
Reputation
18,637
this is my source, an italian bodybuilding site


PART 1

Buy a bodyfat caliper from an ecommerce site (the caliper must measure millimiters and not inches)
1572905863744




PART 2

measure the skinfolds in theese spots. be sure to fold all the fat in your fingers.

TRICEP
in order to misurate this skinfold the caliper must be kept horizontal, then fold the skin in the middle of your homerus
1572905989491


ABDOMEN
the caliper is horizontal, fold the skin next to your belly button
1572906096172


SUPRAILIAC SKINFOLD
the caliper is oblique, fold the skin above the pelvis bone
1572906111708



SUBSCAPULAR SKINFOLD
the caliper is 60 degrees oblique, fold the skin in the lower corner of the scapula
1572906012292


ARMPIT SKINFOLD
the caliper is horizontal and at the same level of the xifoid bone
1572906150255

PECTORAL SKINFOLD
the caliper is oblique, fold the skin between the nipple and the armpit
1572906168713


PART 3

Python code to compute bodyfat
Copy and paste the code on this website https://www.online-python.com/ and run it

Python:
triceps = float(input('insert tricep skin fold size in millimeters'))
abdomen = float(input('insert abdomen skin fold size in millimeters'))
suprailiac = float(input('insert suprailiac skin fold size in millimeters'))
subscapular = float(input('insert subscapular skin fold'))
armpit = float(input('insert armpit skin fold size'))
pectoral = float(input('insert the size of pectoral skin fold'))
thigh = float(input('insert the size of thigh skin fold'))
sum = triceps+abdomen+suprailiac+subscapular+armpit+pectoral+thigh
density = 1.112 - (0.00043499*sum) + (0.00000055*pow(sum,2))-(0.00028826*21)
output = (495/density) -450
print('Yout bodyfat is',output,'%')



Original mathematical formulas to calculate your bodyfat

Theese are the original methmatical formulas which are implemented by the programming code above.
"sum" is defined as the sum of all skinfolds in millimiters

density=1.112 - (0.00043499*sum) + (0.00000055*sum*sum))-(0.00028826*21);
your bodyfat = (495/density) -450
 
Last edited:
  • +1
Reactions: Nims, Elvisandreaa, Deleted member 12150 and 12 others
Awesome Guide! Thank you dude
 
  • +1
Reactions: GoMadAndSTFU
or just go to a specialist

calculation is beyond unpractical
 
i’m prolly 10-11%
 
or just go to a specialist

calculation is beyond unpractical
I have visited 2 nutritionists in my life (the first because I was anorexial and the second because I was overweight)
they both used an electronic system to calculate the bodyfat, which is faster but very inaccurate
 
I have visited 2 nutritionists in my life (the first because I was anorexial and the second because I was overweight)
they both used an electronic system to calculate the bodyfat, which is faster but very inaccurate
nowadays they have MRT lookalike machines where they scan your whole body.
it takes up to a week for the results to come, many bodybuilders and fitness gurus use these
 
just like do a dexa scan
 
  • +1
Reactions: LordNorwood, Casadonis and Deleted member 1774
doesnt measure the glutes/legs where some people store the majority of their bodyfat

flawed
 
  • +1
Reactions: Saelyn, IWantToMax, LowTierNormie and 1 other person
Its better than nothing but using calipers could throw your measurement off by double-digit percentage points. They're good for tracking your progress over time, not for getting a true estimate of your body fat percentage. For that get a DEXA scan.
 
  • +1
Reactions: Deleted member 2227
measuring bodyfat is an absolutely pointless task unless you are measuring gross increases or decreases to track progress. "knowing" what your bf% is is totally irrelevant. One guy has visible abs at 14% and the other, also measured at "14%" looks a little chubby. Its totally useless and neurotic. What do you look like in the mirror - in neutral lighting - because nobody gives a shit what your numbers are, in anything.

"if a whore can't see it, it doesn't count" - GH15, a complete moron, but even a broken clock is right twice a day.
 
  • +1
Reactions: SHARK
this is my source, an italian bodybuilding site


PART 1
buy a bodyfat caliper from amazon (it must measure millimiters and not inches)
View attachment 155707



PART 2
measure the skinfolds in theese spots. be sure to fold all the fat in your fingers.

TRICEP
in order to misurate this skinfold the caliper must be kept horizontal, then fold the skin in the middle of your homerus
View attachment 155714

ABDOMEN
the caliper is horizontal, fold the skin next to your belly button
View attachment 155716

SUPRAILIAC SKINFOLD
the caliper is oblique, fold the skin above the pelvis bone
View attachment 155717


SUBSCAPULAR SKINFOLD
the caliper is 60 degrees oblique, fold the skin in the lower corner of the scapula
View attachment 155715

ARMPIT SKINFOLD
the caliper is horizontal and at the same level of the xifoid bone
View attachment 155718
PECTORAL SKINFOLD
the caliper is oblique, fold the skin between the nipple and the armpit
View attachment 155719



PART 3
I have created this c++ program to compute the bodyfat faster.
according to this poll 50% of users are in information technology so you won't have problems in running this shit
if you don't know programming, read the PART 4

#include <iostream>
#include <cmath>
using namespace std;

int main()
{

//theese are the skinfold measurements in millimeters, replace them with your measurement

double triceps=15;
double abdomen=18;
double suprailiac=13;
double subscapular=12;
double armpit=8;
double pectoral=5;
double thigh=30;



double sum=triceps+abdomen+suprailiac+subscapular+armpit+pectoral+thigh;

double density=1.112 - (0.00043499*sum) + (0.00000055*pow(sum,2))-(0.00028826*21);

double output = (495/density) -450;
cout <<output<<endl;
}



PART 4 (for guys who can't code)

use theese mathematical formulas to calculate your bodyfat


(sum is the sum of all skinfolds in millimiters)

density=1.112 - (0.00043499*sum) + (0.00000055*sum*sum))-(0.00028826*21);
your bodyfat = (495/density) -450
Asking users to modify source code instead of making a program that takes input. come on nigga.
 
Body fat calculation is pseudoscience. There is no scientific resource anywhere about it, and lots of bodybuilders would be almost obese according to ACE guidelines. Body fat is distributed different depending on genetics as well, and muscle insertions play a pivotal role in contouring body fat... so ultimately we know what is important in aesthetics and it is most certainly not body fat. It may prove to be a useful tool, however.
 
Ins't just see if the skin is "skinny"? i think, I'm probably 25%, whatever, good thread.
Body fat calculation is pseudoscience. There is no scientific resource anywhere about it, and lots of bodybuilders would be almost obese according to ACE guidelines. Body fat is distributed different depending on genetics as well, and muscle insertions play a pivotal role in contouring body fat... so ultimately we know what is important in aesthetics and it is most certainly not body fat. It may prove to be a useful tool, however.

Body fat is not weight or IMC...
measuring bodyfat is an absolutely pointless task unless you are measuring gross increases or decreases to track progress. "knowing" what your bf% is is totally irrelevant. One guy has visible abs at 14% and the other, also measured at "14%" looks a little chubby. Its totally useless and neurotic. What do you look like in the mirror - in neutral lighting - because nobody gives a shit what your numbers are, in anything.

"if a whore can't see it, it doesn't count" - GH15, a complete moron, but even a broken clock is right twice a day.

Well i agree, but the why some people don't have abs at 14% is just because of non hypertrophy abs.
 
Last edited:
what the fuck is a dexa scan?
 

Users who are viewing this thread

Back
Top