- #106
jbriggs444
Science Advisor
Homework Helper
- 12,855
- 7,508
Yes. I've corrected that now. Thank you.gleem said:In your KEr you meant to us ω.
The red text in question is the ##(0.01)(0.01)^2## in the following:gleem said:What's going on in the red text?
The first ##(0.01)## is the mass ##m##. 10 grams = 0.01 kg.jbriggs444 said:##I = \frac{1}{2}mr^2 = \frac{1}{2} (0.01)(0.01)^2 = 0.5 \times 10^{-6}## kg m^2
The second ##(0.01)## is intended to be the radius of the pencil. Looking back, ##0.01## meters is actually the diameter and this should have been ##(0.005)^2##. So the calculated moment of inertia should have been lower by a factor of four and the calculated angular rotation rate should have been higher by a factor of four.
Allow me to digress...
Mathematics is often about being able to express complex thoughts compactly. We prefer notations that are brief. More compact is better than less compact.
One way we make things more compact is by eliminating the multiplication symbol, ##\times##. If we want to express the product of two variables, we simply put them next to each other. So ##a \times b## becomes ##ab##. I expect that you are quite familiar with this practice.
As long as all the quantities are represented by single character variable names ("identifiers" in computer-speak), there is no ambiguity. We know that ##ab## means ##a## times ##b## and is not a reference to some new variable named ##ab##.
When you have two numeric literals ("numeral" is short for numeric literal) and want to express multiplication, life is more difficult. If, for instance, you wanted to express ##0.01 \times 0.01^2## using juxtaposition and wrote "##0.010.01^2##", your reader would have a hard time making sense of that.
So you parenthesize and get ##(0.01)(0.01)^2## or the correct ##(0.01)(0.005)^2## in this case.
Does that make sense?
I come from a background in programming and the theory of computing. So I often think of mathematical language in terms of parsing and grammars.
Last edited: