Unit 1: Programming Basics

Lesson 1: Introduction to Python - Pre-activity

Scientific Context: Unit Conversions

The International System of Units (SI) is the modern metric system of measurement. It was designed to provide an organized system of measurement that everyone in the world could use. Due to the fact that an SI base unit is not always the most convenient unit for experimental measurements, unit conversions are a very common computation in science.

Fundamental Principles: Temperature Scales

The Fahrenheit temperature scale defines 32 for the freezing point of water, 212 for the boiling point of water. The difference between these two reference points is divided into 180 equal intervals called degrees. In contrast, the Celsius temperature scale defines 0 for the freezing point of water and 100 for the boiling point of water, thus dividing this same region into 100 parts. The following formula can be used to convert a temperature from its representation on the Fahrenheit scale to the Celsius value:

equation 1: $$T_{Celsius} = \frac{5}{9}(T_{Farenheit} - 32)$$

The Kelvin temperature scale uses the same physical reference points of water as the Celsius scale (0°C for the freezing point of water and 100°C for the boiling point of water), thus the “degree” increment for the two scales is the same. The Kelvin scale, however, shifts the zero point by defining an absolute zero below which temperatures do not exist, i.e., molecular energy is a minimum. This point corresponds to a temperature of -273.15° on the Celsius temperature scale such that:

equation 2: $$T_{kelvin} = T_{Celsius} + 273.15$$

Temperatures on this scale are called kelvins, not degrees kelvin, and it is the SI unit for temperature.

Pre-Activity Questions

1. If a cup of water is 38 degrees Celsius, what is it in Fahrenheit?


In [12]:
## your code here
## or 
## type what you put in calculator (safer to convert cell to markdown)

your explanation here (delete this)

2. If the temperature of an oven is 450 degrees Fahrenheit, what is it in kelvins?


In [11]:
## your code here
## or 
## type what you put in calculator (safer to convert cell to markdown)

your explanation here (delete this)