vote up 2 vote down star
1

I want to calculate what is $x percentage of a $total. $x could be 15%, 20%, etc, and $total could be 1000, 2000, etc. So I'd want the 15% of 1000, for example.

What is the formula for calculating this? (I know this isn't exactly a coding question but I'm coding this feature and need help!

flag
worst. question. ever. – TheSoftwareJedi Dec 5 '08 at 3:59
You know, sometimes I just don't understand the mean spirited nature of this community site. This poor person is being down voted for asking a simple, but relevant question, while others get scores of up votes for asking "what's your favorite server name?" – Richard B Dec 5 '08 at 4:13
I totally agree Richard. This site is turning into an elitist d*ck swinging breading ground… I bet they are just fuming that they can't vote down our comments.. Why would anyone bother asking or answering a question on here. – Skittles Dec 5 '08 at 4:22
Why vote it down? Not everybody groks math. – Andrew Rollings Dec 5 '08 at 4:27
I'm thinking that if you don't understand enough math to do percentages, programming may not be the career for you. – tvanfosson Dec 5 '08 at 4:44
show 6 more comments

5 Answers

vote up 10 vote down check
(actual / available) * 100 = percent // start

actual / available = percent / 100

actual = (percent / 100) * available // finish

E.g. 15% of 1000

actual = (15 / 100) * 1000
actual = 0.15 * 1000
actual = 150
link|flag
It was the third of these I was after :) – help Dec 5 '08 at 3:46
Of course. But, "show your work." :P – Jonathan Lonowski Dec 5 '08 at 3:48
What do you mean? You want to see the feature where I was doing this? – help Dec 5 '08 at 5:22
It's an old school joke ... – BobbyShaftoe Dec 5 '08 at 5:25
What does the joke mean? – help Dec 5 '08 at 5:30
show 3 more comments
vote up 3 vote down

Given X and Y, X% of Y is X * Y/100. If using integer arithmetic, make sure you do (X * Y)/100, not (X / 100) * Y.

15% of 1000 is (15*1000)/100, which is 150.

link|flag
vote up 1 vote down

formulas:

percentage = partialAmount / totalAmount
totalAmount = partialAmount / percentage
partialAmount = percentage * totalAmount

note that percentage is normally a decimal number between 0 and 1

link|flag
Which always amounts to 0 in integer arithmetic. – Airsource Ltd Dec 5 '08 at 3:44
@[Airsource Ltd]: well that would be a silly way to try to calculate percentages, now wouldn't it? – Steven A. Lowe Dec 5 '08 at 3:45
percentage is normally a number between 0 and 100. Its meaning is per hundred anyway. – Szere Dyeri Dec 10 '08 at 1:27
@[Szere Dyeri]: percentage is displayed as 0-100, but calculated as 0-1 decimal. At least in every programming language I've ever used ;-) – Steven A. Lowe Dec 10 '08 at 2:16
vote up 1 vote down

Don't know if I'm missing something here but if you just want the percentage of a number it's just multiply it by the percentage and divide by 100:

NewTotal = Total * Percentage / 100

IE:

NewTotal = 1000 * 15/100

or

NewTotal = 1000 * 0.15

link|flag
vote up 0 vote down

Though this particular question has been answered, you may find this site very helpful for basic algebra topics.

http://www.purplemath.com/modules/index.htm

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.