Inside Collection (Book): Accessible Physics Concepts for Blind Students
Summary: This module provides a brief tutorial on scale factors, ratios, and proportions that is designed to be accessible to blind students.
This module is part of a collection of modules designed to make physics concepts accessible to blind students.
See http://cnx.org/content/col11294/latest/ for the main page of the collection and http://cnx.org/content/col11294/latest/#cnx_sidebar_column for the table of contents for the collection.
The collection is intended to supplement but not to replace the textbook in an introductory course in high school or college physics.
This module provides a brief tutorial on scale factors, ratios, and proportions that is designed to be accessible to blind students.
In addition to an Internet connection and a browser, you will need the following tools (as a minimum) to work through the exercises in these modules:
The minimum prerequisites for understanding the material in these modules include:
I recommend that you open another copy of this document in a separate browser window and use the following links to easily find and view the figures and listings while you are reading about them.
I recommend that you also study the other lessons in my extensive collection of online programming tutorials. You will find a consolidated index at www.DickBaldwin.com .
Mathematical expressions are used in physics to describe relationships that are difficult to express in words. The expressions use algebraic symbols to represent quantities that consist of numbers and units.
Measurements are important
Conclusions that are drawn in physics and other sciences ranging from chemistry to the social sciences are often based on measurements such as length, width, weight, salinity, population, density, etc.
Each number in an equation often represents the results of a measurement, which is made in terms of a standard. The units indicate which standard was used to make the measurements.
Knowledge of units is critical
A number that is used to indicate the result of a measurement is of little value unless we know the units in which the measurement was made. For example, it isn't very useful to know that the length of an object is 125 unless we know whether the units are meters, centimeters, millimeters, or miles.
The Google calculator
Although I won't go into detail in this module, I will tell you that the Google calculator is very good at helping you to keep track of units. For example, if you enter the following expression in the Google search box,
3 ft + 1 yd + 36 inches
The following result will be displayed immediately below the search box:
(3 ft) + (1 yd) + (36 inches) = 2.7432 meters
We often express the relationship between two items using a scale factor.
For example, we might say that that a colt doubled its weight in one year. This means that the colt's weight after one year was equal to the colt's weight at birth multiplied by a factor of two. The factor is the number by which a quantity is multiplied or divided when it is changed from one value to another.
The factor is the ratio of the new value to the old value. Regarding the colt mentioned above, we might write:
NewWeight / BirthWeight = 2
where the slash character "/" indicates division.
Percentage increases
It is also common for us to talk about something increasing or decreasing by a given percentage value. For example, we might say that a colt increased its weight by 50-percent in one year. This is equivalent to saying:
NewWeight = BirthWeight * (1 + 50/100)
This assumes that when evaluating a mathematical expression:
This is typical behavior for computer programs and spreadsheets, but not necessarily for hand calculators.
Percentage decreases
In my dreams, I might say that I went on a diet and my weight decreased by 25-percent in one year. This would be equivalent to saying:
NewWeight = OldWeight * (1 - 25/100)
Exercise on scale factors
Write a script that has the following behavior. Given a chalk line that is 100 inches long, draw other chalk lines that are:
My version of the script is shown in Listing 1.
<!-- File JavaScript01.html -->
<html><body>
<script language="JavaScript1.3">
//Do the computations
var origLine = 100
var lineA = 2 * origLine
var lineB = (25/100) * origLine
var lineC = (1 + 25/100) * origLine
var lineD = (1 - 25/100) * origLine
//Display the results
document.write("Original line = "
+ origLine + "</br>")
document.write("A = " + lineA + "</br>")
document.write("B = " + lineB + "</br>")
document.write("C = " + lineC + "</br>")
document.write("D = " + lineD + "</br>")
</script>
</body></html>
Screen output
When you copy the code from Listing 1 into an html file and open the file in your web browser, the output text shown in Figure 1 should appear in your browser window.
| Screen output for Listing #1. | |
|---|---|
|
Note that although they sound similar, specifications B and D above don't mean the same thing.
We talk about increasing or changing a value by some factor because we can often simplify a problem by thinking in terms of proportions.
A symbol for proportionality
Physics textbooks often use a character that doesn't appear on a QWERTY keyboard to indicate "is proportional to." That character is probably not in the vocabulary of typical screen readers and is probably not compatible with Braille displays.
I will use a "$" character for that purpose because:
For example, I will write A $ B to indicate that A is proportional to B.
When we say that A is proportional to B, or
A $ B
we mean that if B increases by some factor, then A must increase by the same factor.
Circumference of a circle
Let's illustrate what we mean with a couple of examples. For the first example, we will consider the circumference of a circle. Hopefully, you know that the circumference of a circle is given by the expression:
C = 2 * PI * r
where:
From this expression, we can conclude that
C $ r
If we modify the radius...
If we double the radius, the circumference will also double. If we reduce the radius by 25-percent, the circumference will also be reduced by 25-percent. This is illustrated by the script in Listing 2.
<!-- File JavaScript02.html -->
<html><body>
<script language="JavaScript1.3">
var r = 10
var C = 2 * Math.PI * r
document.write("r =" + r +
", C = " + C + "</br>")
//Multiply r by 2. Then display r and C
r = r * 2
C = 2 * Math.PI * r
document.write("r =" + r +
", C = " + C + "</br>")
//Reduce r by 25%, Then display r and C
r = r * (1 - 25/100)
C = 2 * Math.PI * r
document.write("r =" + r +
", C = " + C + "</br>")
</script>
</body></html>
Output from the script
When you open the script shown in Listing 2 in your browser, the text shown in Figure 2 should appear in your browser window.
| Screen output for Listing #2. | |
|---|---|
|
Figure 2 shows the value of the circumference for three different values for the radius. You should be able to confirm that the combination of the three lines of output text satisfy the proportionality rules stated earlier .
For example, you can confirm these results by entering the following three expressions in the Google search box and recording the results that appear immediately below the search box:
2*pi*10
2*pi*20
2*pi*15
Area of a circle
Before I can discuss the area of a circle, I need to define a symbol that we can use to indicate exponentiation.
A symbol for exponentiation
Physics textbooks typically use a superscript character to indicate that a value is raised to a power, such as the radius of a circle squared.
Superscripts may or may not be in the vocabulary of screen readers, but probably are not compatible with Braille displays. Therefore, we need a symbol that is compatible with both.
When I need to indicate that a value is raised to a power, I will use the "^" character, such as in the following text that indicates radius squared, or radius raised to the second power.
radius^2
In those cases where the exponent is a fraction, or is negative, I will surround it with parentheses, such as in
radius^(1/2), and
distance^(-2)
The first term indicates the square root of the radius. The second term indicates that distance is being raised to the -2 power.
I chose to use the "^" character to indicate exponentiation because it is used as the exponentiation operator in some programming languages, such as BASIC. The "^" character is also recognized by the Google calculator as an exponentiation operator.
Unfortunately, there is no exponentiation operator in JavaScript, so we will need a different approach to raise a value to a power in our JavaScript scripts. As you will see later, we will use the built-in Math.pow method for that purpose.
An expression for the area of a circle
From earlier courses, you should know that the area of a circle is given by
A = PI * r^2
where
Proportional to the square of the radius
From this, we can conclude that the area of a circle is not proportional to the radius. Instead, it is proportional to the square of the radius as in
A $ r^2
If you change the radius...
If you change the value of the radius, the area changes in proportion to the square of the radius. If the radius doubles, the area increases by four. If the radius is decreased by 25-percent, the area decreases by more than 25-percent. This is illustrated by the script in Listing 3.
<!-- File JavaScript03.html -->
<html><body>
<script language="JavaScript1.3">
var r = 10
var A = Math.PI * Math.pow(r,2)
document.write("r =" + r +
", A = " + A + "</br>")
//Multiply r by 2. Then display r and C
r = r * 2
var A = Math.PI * Math.pow(r,2)
document.write("r =" + r +
", A = " + A + "</br>")
//Reduce r by 25%, Then display r and C
r = r * (1 - 25/100)
var A = Math.PI * Math.pow(r,2)
document.write("r =" + r +
", A = " + A + "</br>")
//Compute and the display the cube root
// of a number.
var X = Math.pow(8,1/3)
document.write("Cube root of 8 = " + X)
</script>
</body></html>
The JavaScript Math.pow method
Listing 3 calls a built-in JavaScript method that I have not used before: Math.pow . This method is called to raise a value to a power. It requires two parameters. The first parameter is the value that is to be raised to a power and the second parameter is the power to which the value is to be raised.
The method returns the method raised to the power.
Fractional exponents
Although this topic is not directly related to the discussion on proportionality, as long as I am introducing the method named Math.pow , I will point out the it is legal for the exponent to be a fraction. The last little bit of code in Listing 3 raises the value 8 to the 1/3 power. This actually computes the cube root of the value 8. As you should be able to confirm in your head, the cube root of 8 is 2, because two raised to the third power is 8.
Output from the script
When you open the script shown in Listing 3 in your browser, the text shown in Figure 3 should appear in your browser window.
| Screen output for Listing #3. | |
|---|---|
|
An examination of the first three lines of text in Figure 3 should confirm that they satisfy the proportionality rules for the square of the radius described earlier .
The last line of text in Figure 3 confirms that the Math.pow method can be used to compute roots by specifying fractional exponents as the second parameter.
I encourage you to run the scripts that I have presented in this lesson to confirm that you get the same results. Copy the code for each script into a text file with an extension of html. Then open that file in your browser. Experiment with the code, making changes, and observing the results of your changes. Make certain that you can explain why your changes behave as they do.
I will publish a module containing consolidated links to resources on my Connexions web page and will update and add to the list as additional modules in this collection are published.
This section contains a variety of miscellaneous information.
Financial : Although the Connexions site makes it possible for you to download a PDF file for this module at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, you should be aware that some of the HTML elements in this module may not translate well into PDF.
I also want you to know that I receive no financial compensation from the Connexions website even if you purchase the PDF version of the module.
Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.
-end-