Temperature Conversion Formulas — C, F, K

#Math Formula
TL;DR
The temperature conversion formulas translate between Celsius, Fahrenheit, and Kelvin using just two ideas — a degree-size ratio of $\frac{9}{5}$ between Fahrenheit and the other two, and a $273.15$ shift between Celsius and Kelvin. This article gives all six directional formulas, a master conversion table, derivations, worked examples, and the mistakes that cost marks.
BT
Bhanzu TeamLast updated on June 22, 20267 min read

What Are the Temperature Conversion Formulas?

The temperature conversion formulas are the six equations that move a reading between the three common scales — Celsius (°C), Fahrenheit (°F), and Kelvin (K). Each scale measures the same physical quantity but anchors its zero and sizes its degree differently, so converting means adjusting for both.

Two facts drive every formula:

  • Degree size. Celsius and Kelvin use the same-sized degree. Fahrenheit's degree is smaller — a Fahrenheit degree is $\frac{5}{9}$ of a Celsius degree, so converting across Fahrenheit always involves the factor $\frac{9}{5}$ (or its inverse $\frac{5}{9}$).

  • Zero point. Celsius zero is water's freezing point. Fahrenheit zero is a brine mixture, putting freezing at $32°F$. Kelvin zero is absolute zero, the coldest temperature possible, which is $-273.15°C$.

The Six Conversion Formulas

Each pair of scales has two directions. Here are all six, grouped by pair.

Celsius and Fahrenheit:

$$°F = °C \times \frac{9}{5} + 32 \qquad °C = (°F - 32) \times \frac{5}{9}$$

Celsius and Kelvin:

$$K = °C + 273.15 \qquad °C = K - 273.15$$

Fahrenheit and Kelvin:

$$K = (°F - 32) \times \frac{5}{9} + 273.15 \qquad °F = (K - 273.15) \times \frac{9}{5} + 32$$

Notice that the two Fahrenheit-to-Kelvin formulas are just the Celsius-to-Kelvin step stacked onto the Celsius-to-Fahrenheit step. Kelvin always reaches Fahrenheit through Celsius.

Master Conversion Table

Celsius (°C)

Fahrenheit (°F)

Kelvin (K)

Context

$-273.15$

$-459.67$

$0$

Absolute zero

$-40$

$-40$

$233.15$

Scales cross

$-18$

$0$

$255.15$

Fahrenheit zero

$0$

$32$

$273.15$

Water freezes

$20$

$68$

$293.15$

Room temperature

$37$

$98.6$

$310.15$

Human body

$100$

$212$

$373.15$

Water boils (1 atm)

$5504.85$

$9940.73$

$5778$

Sun's surface

How Do You Derive the Celsius to Fahrenheit Formula?

The Celsius scale was built so that water freezes at $0°C$ and boils at $100°C$. On the Fahrenheit scale those same two points read $32°F$ and $212°F$. Two matching points fix a straight-line relationship.

The slope is the ratio of the intervals:

$$\text{slope} = \frac{212 - 32}{100 - 0} = \frac{180}{100} = \frac{9}{5}$$

The line passes through $(0, 32)$, so the intercept is $32$. That gives:

$$°F = \frac{9}{5},°C + 32$$

Rearranging for the reverse direction — subtract $32$, then multiply by the inverse slope $\frac{5}{9}$ — yields $°C = (°F - 32)\times\frac{5}{9}$. No memorisation needed; both come from one line through two points.

Examples of Temperature Conversion Formulas

Example 1

Convert $25°C$ to Fahrenheit.

$$°F = 25 \times \frac{9}{5} + 32 = 45 + 32 = 77°F$$

Final answer: $77°F$.

Example 2

Convert $98.6°F$ (body temperature) to Celsius.

Wrong attempt. A common first move is to multiply before subtracting: $98.6 \times \frac{5}{9} = 54.8$, then $54.8 - 32 = 22.8°C$. That is wrong — body temperature is nowhere near $23°C$. The order of operations was inverted.

Correct. Subtract first, then scale:

$$°C = (98.6 - 32) \times \frac{5}{9} = 66.6 \times \frac{5}{9} = 37°C$$

Final answer: $37°C$. Subtracting the $32$ offset before scaling is the whole fix.

Example 3

Convert $300$ K to Celsius.

$$°C = 300 - 273.15 = 26.85°C$$

Final answer: $26.85°C$ — a warm room.

Example 4

Convert $-40°C$ to Fahrenheit.

$$°F = -40 \times \frac{9}{5} + 32 = -72 + 32 = -40°F$$

Final answer: $-40°F$. This is the one temperature where Celsius and Fahrenheit read the same number — the single crossing point of the two scales.

Example 5

Convert $350°F$ (a baking oven) to Kelvin.

$$K = (350 - 32) \times \frac{5}{9} + 273.15 = 318 \times \frac{5}{9} + 273.15 = 176.67 + 273.15 = 449.82 \text{ K}$$

Final answer: $\approx 449.82$ K. The Fahrenheit value reaches Kelvin only after passing through Celsius.

Example 6

Convert $77$ K (liquid nitrogen) to Fahrenheit.

$$°F = (77 - 273.15) \times \frac{9}{5} + 32 = (-196.15) \times 1.8 + 32 = -321.07°F$$

Final answer: $\approx -321.07°F$ — cold enough to freeze skin instantly.

Why the Temperature Conversion Formulas Matter

Before standardised scales, a "hot" furnace in one workshop meant nothing in another. The formulas are what let a measurement travel.

  • Science demands Kelvin. The gas law $PV = nRT$ only works with $T$ in Kelvin, because Kelvin is the absolute scale where zero means zero kinetic energy. A chemist converts before any calculation. The Kelvin to Fahrenheit formula is how those lab readings reach a US thermostat display.

  • Medicine reads in two scales. A fever of $38.3°C$ is $101°F$ — clinicians on different continents convert constantly, and a decimal error changes a diagnosis.

  • Cooking crosses borders. A recipe at $180°C$ is $356°F$; the same dish published in two countries needs the conversion to come out edible.

  • Engineering and aerospace. Materials behave differently across temperature ranges, and a spacecraft sensor logging in Kelvin must be read against a spec written in Celsius. Skip the conversion and you get the Mars Climate Orbiter.

What Are the Most Common Mistakes With Temperature Conversions?

Mistake 1: Wrong order of operations in Fahrenheit to Celsius

Where it slips in: Converting Fahrenheit to Celsius and multiplying before subtracting the $32$.

Don't do this: Compute $°F \times \frac{5}{9}$ first, then subtract $32$.

The correct way: Subtract $32$ first, then multiply by $\frac{5}{9}$: $°C = (°F - 32)\times\frac{5}{9}$. The offset has to come off before the scale factor applies.

Mistake 2: Using 273 instead of 273.15

Where it slips in: Celsius and Kelvin conversions done from memory.

Don't do this: Treat $0°C$ as exactly $273$ K.

The correct way: $0°C = 273.15$ K exactly. The $0.15$ matters for any answer reported to decimals; $273$ is only a rough mental shortcut. The second-guesser who memorised "$273$" often won't trust the extra $0.15$ even when shown it.

Mistake 3: Forgetting Kelvin has no degree symbol and no negatives

Where it slips in: Writing a Kelvin answer.

Don't do this: Write $300°$K or report a negative Kelvin value.

The correct way: Kelvin is written as a plain number plus K — $300$ K, never $300°$K — and it never goes below $0$. A negative Kelvin result signals a sign or direction error. The Mars Climate Orbiter loss came from this exact family of slip: units handled inconsistently between teams, never sanity-checked, until the spacecraft was lost.

The Mathematicians Behind Temperature Conversion Formulas

Daniel Gabriel Fahrenheit (1686–1736, German-Polish) built the first reliable mercury thermometer and set his zero at a reproducible brine-and-ice mixture, fixing freezing at $32°$ and the scale that still bears his name.

Anders Celsius (1701–1744, Sweden) proposed the centigrade scale in 1742, anchoring $0$ and $100$ to water's freezing and boiling points — the scale that became the world's everyday standard.

William Thomson, Lord Kelvin (1824–1907, Scotland) reasoned in 1848 that gas pressure extrapolates to zero near $-273°C$, and defined an absolute scale starting at that floor — the Kelvin used in every physical law today.

Conclusion

  • The temperature conversion formulas rest on two ideas: a $\frac{9}{5}$ degree-size ratio for Fahrenheit, and a $273.15$ shift between Celsius and Kelvin.

  • All six directions reduce to combinations of those two adjustments; Kelvin reaches Fahrenheit only through Celsius.

  • Fahrenheit-to-Celsius requires subtracting $32$ before scaling — the order-of-operations slip is the top mark-loser.

  • Use $273.15$, not $273$; Kelvin carries no degree symbol and never goes negative.

  • $-40$ is the one temperature where Celsius and Fahrenheit agree.

Practice These Before Moving On

Work through these, then check against the master table.

  1. Convert $0°C$ to both Fahrenheit and Kelvin.

  2. Convert $212°F$ to Celsius and confirm it is the boiling point of water.

  3. Convert $373.15$ K to both Celsius and Fahrenheit.

Want a live Bhanzu trainer to walk your child through more temperature conversion formulas step by step? Book a free demo class — online globally.

Book a Free Demo

Was this article helpful?

Your feedback helps us write better content

Frequently Asked Questions

At what temperature do Celsius and Fahrenheit read the same?
At $-40$. It is the single point where $°C = °F$, which is why $-40$ is the famous crossover value.
What are the four units of temperature?
Celsius, Fahrenheit, and Kelvin are the three common ones; Rankine (an absolute scale using Fahrenheit-sized degrees) is the fourth, used mostly in some US engineering fields.
How do you convert Celsius to Fahrenheit fast?
For a quick estimate, double the Celsius value and add $30$ — so $20°C \approx 70°F$ (true value $68°F$). Use the full $°F = \frac{9}{5}°C + 32$ when accuracy matters.
Which scale is best?
It depends on use. Everyday weather uses Celsius or Fahrenheit; science uses Kelvin because it is absolute. None is "better" — each suits a context.
How are the variables in the temperature conversion formulas related?
Celsius and Kelvin share degree size and differ by a $273.15$ shift; Fahrenheit differs in both degree size ($\frac{9}{5}$ ratio) and zero point ($32$ offset).
✍️ Written By
BT
Bhanzu Team
Content Creator and Editor
Bhanzu’s editorial team, known as Team Bhanzu, is made up of experienced educators, curriculum experts, content strategists, and fact-checkers dedicated to making math simple and engaging for learners worldwide. Every article and resource is carefully researched, thoughtfully structured, and rigorously reviewed to ensure accuracy, clarity, and real-world relevance. We understand that building strong math foundations can raise questions for students and parents alike. That’s why Team Bhanzu focuses on delivering practical insights, concept-driven explanations, and trustworthy guidance-empowering learners to develop confidence, speed, and a lifelong love for mathematics.
Related Articles
Book a FREE Demo ClassBook Now →