Lesson 1 of 15

Temperature Scales

Temperature Scales

Temperature is a measure of the average kinetic energy of particles in a substance. Three major scales are used in science and everyday life: Celsius, Fahrenheit, and Kelvin.

The Kelvin Scale

The Kelvin scale is the SI unit of temperature and is fundamental to thermodynamics. It starts at absolute zero, the lowest theoretically possible temperature, where all thermal motion ceases.

K=°C+273.15K = °C + 273.15

Absolute zero is defined as:

0K=273.15°C=459.67°F0\,\text{K} = -273.15°C = -459.67°F

Celsius and Fahrenheit

The Celsius scale sets 0°C as the freezing point of water and 100°C as its boiling point at standard pressure.

The Fahrenheit scale sets 32°F as freezing and 212°F as boiling.

Converting from Fahrenheit to Celsius:

°C=(°F32)×59°C = \frac{(°F - 32) \times 5}{9}

Converting from Celsius to Fahrenheit:

°F=°C×95+32°F = °C \times \frac{9}{5} + 32

Converting Kelvin to Fahrenheit

Combining the two formulas above:

°F=(K273.15)×95+32°F = (K - 273.15) \times \frac{9}{5} + 32

Key Reference Points

TemperatureKelvinCelsiusFahrenheit
Absolute zero0 K−273.15°C−459.67°F
Water freezes273.15 K0°C32°F
Body temperature~310 K~37°C~98.6°F
Water boils373.15 K100°C212°F

Your Task

Implement the three conversion functions below.

Python runtime loading...
Loading...
Click "Run" to execute your code.