Temperature and Thermometry — What Does “Hot” Really Mean? 🌡️

A fun experiment 🥶🥵: put one hand in ice water for a few minutes and the other in hot water. Now stick both into a bowl of lukewarm water. One hand insists “Ahh, that’s warm!” while the other yells “Yikes, that’s cold!” — for the same water! 🤯 Your senses are unreliable temperature meters. So how do we measure temperature accurately? And what is “temperature” in the first place?

The core idea in one paragraph 📌

Temperature (\( T \)) is a measure of the average kinetic energy of the particles of a body — the faster they jiggle, the higher the temperature. A thermometer works via the zeroth law of thermodynamics (if A is in thermal equilibrium with B, and B with C, then A is in equilibrium with C) — it reads the temperature by reaching equilibrium with the sample. Three common scales: Celsius (°C, water freezes at 0, boils at 100), Kelvin (K, the SI unit that starts from absolute zero: \( T_K = \theta_C + 273.15 \)), and Fahrenheit (°F: \( \theta_F = \tfrac{9}{5}\theta_C + 32 \)). Absolute zero (\( 0\,\text{K} = -273.15\,°\text{C} \)) is the coldest possible temperature.

Three scales, three formulas 📐

\[ \boxed{T_K = \theta_C + 273.15} \]

Kelvin ↔ Celsius — just an offset, no scaling. So a change in temperature is identical in both: \( \Delta T_K = \Delta \theta_C \).

\[ \boxed{\theta_F = \tfrac{9}{5}\,\theta_C + 32 \qquad \theta_C = \tfrac{5}{9}(\theta_F – 32)} \]

Celsius ↔ Fahrenheit — both scaling and offset differ. Fun fact: at −40 the two are equal (\( -40\,°\text{C} = -40\,°\text{F} \)) 🎯.

Comparison table 📊

Situation Celsius (°C) Kelvin (K) Fahrenheit (°F)
Absolute zero −273.15 0 −459.67
CO₂ freezing (dry ice) −78.5 194.65 −109.3
Coldest recorded on Earth (Vostok) −89.2 183.95 −128.6
Water freezing 0 273.15 32
Room 25 298.15 77
Human body 37 310.15 98.6
Water boiling (sea level) 100 373.15 212
Lead melting 327 600.15 621
Sun’s surface 5500 5773 9932
Sun’s core \( 1.5\times 10^{7} \) \( 1.5\times 10^{7} \) \( 2.7\times 10^{7} \)

Why Kelvin is “the scientific scale” 🧪

Because Kelvin temperature is never negative — and a lot of physical laws (\( PV = nRT \), blackbody radiation \( \sigma T^4 \), speed of sound \( \propto \sqrt T \), etc.) only work if \( T \) is in kelvin. Plug Celsius in and disaster follows (imagine \( T=0 \)°C in \( PV=nRT \) → zero pressure for room air 😅).

The zeroth law — why does a thermometer even work? 🤔

It looks obvious, but it can’t be derived — so it’s a postulate:

If body A is in thermal equilibrium with body B, and B with C, then A and C are in equilibrium too.

That means we can insert a “third body” (the thermometer) as a go-between for any two objects. It’s called “zeroth” because it was recognised as necessary after the first and second laws were already numbered — but it’s more fundamental than either, so: zeroth 😂.

Types of thermometer 🔧

Type Principle Range Uses
Liquid (Hg/alcohol) Liquid expands in a capillary −40 to 350°C Home, lab
Bimetallic Two metal strips bend at different expansion rates −40 to 500°C Oven & iron thermostats
Thermocouple Voltage between two dissimilar wires (Seebeck effect) −270 to 2300°C Industrial, furnaces
Resistance (PT100) Platinum wire resistance varies with T −200 to 850°C Highest precision, lab
Infrared Detects thermal radiation from a distance −50 to 3000°C Forehead scanner, industry
Gas (constant volume) Ideal-gas pressure is linear in T 1 to 1500 K Primary standard, defines K

Example 1: Scale conversion 🧮

Convert room temperature 25°C to Kelvin and Fahrenheit.

\[ T_K = 25 + 273.15 = 298.15\ \text{K} \]
\[ \theta_F = \tfrac{9}{5}(25) + 32 = 45 + 32 = 77\ °\text{F} \]

Example 2: A temperature change 🔥

A metal piece warms from 20°C to 90°C. What is this change in kelvin?

\[ \Delta \theta_C = 90 – 20 = 70\ °\text{C} \;\Rightarrow\; \Delta T_K = 70\ \text{K} \]

A change in temperature is always the same in Celsius and Kelvin — the offset cancels, the step sizes match.

Example 3: When are both scales equal? 🎯

At what temperature is \( \theta_C = \theta_F \)?

\[ \theta_F = \tfrac{9}{5}\theta_C + 32 \;\Rightarrow\; \theta_C = \tfrac{9}{5}\theta_C + 32 \;\Rightarrow\; -\tfrac{4}{5}\theta_C = 32 \]
\[ \theta_C = -40\ °\text{C} = -40\ °\text{F} \]

So at −40 the two scales coincide — a very handy calibration point 🥶.

Python analysis 🐍

1) Three-way temperature converter

def convert(value, from_scale):
    """Convert a temperature into all three scales."""
    f = from_scale.upper()
    if f == "C":
        c = value
    elif f == "K":
        c = value - 273.15
    elif f == "F":
        c = (value - 32) * 5 / 9
    else:
        raise ValueError("scale must be C, K, or F")

    return {"C": c, "K": c + 273.15, "F": c * 9/5 + 32}

for v, s in [(25, "C"), (300, "K"), (100, "F"), (-40, "C")]:
    r = convert(v, s)
    print(f"{v}°{s} → {r['C']:.2f}°C, {r['K']:.2f} K, {r['F']:.2f}°F")
# Note that -40°C is exactly -40°F!

2) Plot the three scales against each other

import numpy as np
import matplotlib.pyplot as plt

C = np.linspace(-50, 150, 200)
K = C + 273.15
F = 9/5 * C + 32

plt.figure(figsize=(7, 5))
plt.plot(C, C, label="Celsius (baseline)")
plt.plot(C, F, label="Fahrenheit")
plt.plot(C, K - 273.15, "--", label="Kelvin − 273.15 (overlays C)")
plt.axhline(-40, color="gray", ls=":", lw=0.7)
plt.axvline(-40, color="gray", ls=":", lw=0.7)
plt.scatter([-40], [-40], color="red", zorder=5, label="Common point -40")
plt.xlabel("Celsius (°C)")
plt.ylabel("Value in each scale")
plt.title("Temperature-scale comparison")
plt.legend(); plt.grid(alpha=0.3); plt.show()

3) Calibrating a home thermometer

# Thermometer reads 1°C in ice water (should be 0) and 102°C in boiling water (should be 100).
# Build a linear calibration curve.
readings = [1.0, 102.0]     # reading
truth    = [0.0, 100.0]     # actual

slope = (truth[1] - truth[0]) / (readings[1] - readings[0])
offset = truth[0] - slope * readings[0]

def calibrate(reading):
    return slope * reading + offset

for r in [1, 20, 37, 100, 102]:
    print(f"reading {r}°C → actual {calibrate(r):.2f}°C")
# So a "37°C" reading (mild fever?) is really ~35.6°C — no fever after all!

Take-home summary 🎁

Temperature = average kinetic energy of particles. Three scales: Celsius (everyday), Kelvin (scientific, starts at absolute zero, \( T_K=\theta_C+273.15 \)), Fahrenheit (\( \theta_F=\tfrac{9}{5}\theta_C+32 \)). \( \Delta T \) is identical in Celsius and Kelvin. Absolute zero \( 0 \) K — the coldest anything can get. The zeroth law is why thermometers work at all: thermal equilibrium. Thermometer types run from home liquid-in-glass to industrial IR guns, each with its own range. −40 is the fun point where Celsius meets Fahrenheit 🎯.


“Nice to know” box: We can never actually reach absolute zero 🥶

The third law of thermodynamics states: it is impossible to reach absolute zero in a finite number of steps. No matter how good our cooling tech gets, we can only get close. The current lab record is around 38 picokelvin (0.000 000 000 038 K) in a Bose–Einstein-condensed rubidium gas 🤯. Meanwhile, empty interstellar space — the emptiest place in the universe — sits at about 2.7 K because of the cosmic microwave background left over from the Big Bang. So our atomic labs are literally millions of times colder than anything found naturally ✨.


Test yourself 📝


References and further exploration 📚

Articles and reference

Videos (YouTube)

External simulators

On this site 🔗


Next up: thermal expansion 🌉 — why bridges have gaps, why train rails leave space, and why water’s “weird” expansion behavior lets fish survive under ice all winter. See you there! 👋

Have a question? 🤔

If something isn't clear or you have a question, ask it here. The answer will be published on this page.

💬 جواب بهتری داری؟ یا یه سؤال جدید؟

اگه به سؤالای بالا پاسخی داری که فکر می‌کنی روشن‌تر یا کامل‌تر از مال منه، یا یه سؤال جدید برای دانش‌آموزای دیگه داری — تو بخش نظرات پایین صفحه ارسال کن. هر پیامی رو می‌خونم، تأیید می‌کنم و منتشر می‌شه. این‌جوری همه از تجربه‌ی همدیگه استفاده می‌کنیم. 🌱

در حال آپلود فایل...
لطفاً صبر کنید — صفحه را نبندید
۰٪