Fraction to Percent Calculator Online Tool

Integer
Numerator
Denominator

Percent

About Fraction to Percent Calculator Online Tool:

This online Fraction to Percent Calculator helps you to convert one Fraction number into a percent number. Put numerator and denominator into the textbox, the percent result will show below.

Fraction Number System:

Fraction represents a part of a whole, the field above the black line is the numerator, the field below the black line is the denominator. While both the numerator and the denominator are natural numbers, the fraction it self sometimes can't be represented as natural numbers.

Percent System:

Percent represents a part of a whole (100). Percent System is widely used in financial scenario. The function of percent is very similar to fraction, but much easier for human to read.

comic fraction to percent

How to convert from fraction to percent?

Divide the numerator by the fraction's denominator, then multiply the result by 100.

Fraction to Percent conversion table:

Fraction Percent Fraction Percent
1/2 50% 1/6 16.666667%
1/3 33.333333% 2/6 33.333333%
2/3 66.666667% 3/6 50%
1/4 25% 4/6 66.666667%
2/4 50% 5/6 83.333333%
3/4 75% 1/7 14.285714%
1/5 20% 2/7 28.571429%
2/5 40% 3/7 42.857143%
3/5 60% 4/7 57.142858%
4/5 80% 5/7 71.428571%

More information:

Wikipedia (Fraction): https://en.wikipedia.org/wiki/Fraction_(mathematics)

Wikipedia (Percentage): https://en.wikipedia.org/wiki/Percentage

Convert Fraction to Percent with Python:

def fraction_to_percent(numerator, denominator):
    return 100 * numerator / denominator


numerator_input = 12
denominator_input = 72
percent_output = fraction_to_percent(numerator_input, denominator_input)
print('percent result is:{0}%'.format(percent_output))

-------------------
percent result is:16.666666666666668%