2

When I was on holidays, I was told a story about how someone passing under a palmtree and almost got a coconut fall on his head.

Given that these palmtrees where about $20m$ high, we wondered at what speed the coconut was when it reached the ground... I took a pen and a paper and tried to remember what I knew about velocity, acceleration etc.

When I got home I found out that the formula to compute this is $v = \sqrt{2 * g * d}$, giving a final speed of about $71.3127 km/h$.

However, the question is not about the real formula, it is about my failed attempt at solving the problem. I tried reasoning about units and ended up with this:

  • I know that $g = 9.81 m/s^2$
  • I have a distance ($20 m$)
  • I want my result to be in $m/s$
  • Hum, hey look if I multiply $g$ by the distance I end up with $m^2/s^2$
  • And then I can simply do $\sqrt{m^2/s^2} = m/s$, giving the final formula for computing the speed to be $v = \sqrt{g * d}$

If I apply the math, I end up with a speed of $50.42 km/h$, which looked reasonable enough for me to believe I was right until I got home.

Ok, after all this introduction here comes the questions... I know that the reasoning is wrong, that I should integrate the speed etc and eventually end up with the correct formula, however I can't help thinking that what I'm computing has to have a meaning in the real physical world:

  1. What does the intermediate result in $m^2/s^2$ represent?
  2. What does the final result in $m/s$ represent?
  3. Should I avoid thinking about units when trying to solve a problem?
  4. Does every units manipulation result into something that means something in the real world, or does some manipulation just end up in non sense?
Mostafa
  • 4,034
Silex
  • 135

2 Answers2

3

This is a really long comment, which will address some of the questions.

What you did is basically what people call dimensional analysis. Now that you know the name, you can perhaps investigate more and learn more about it. Dimensional analysis can be a strong tool, it will give you the functional form of the final answer of your problem; without asking for too much heavy analysis(i.e. actually solving the problem). Since constant factors don't have units, dimensional analysis is unable to give them; you will need other means to derive them, e.g. special cases, experimental data or solving the problem completely. That constant factor is usually of $O(1)$ but in some rare cases it can be really big(or small).

David Morin gives a nice introduction about them here. He also has a lovely piece of poem:

“Your units are wrong!” cried the teacher.

“Your church weighs six joules — what a feature!

And the people inside

Are four hours wide,

And eight gauss away from the preacher!”

Ali
  • 6,052
  • 6
  • 36
  • 50
2

1) What does the intermediate result in $m^2/s^2$ represent?

The gravitational acceleration times the distance fallen ($g \ d$) represents the kinetic energy per unit mass of the object.

2) What does the final result in m/s represent?

The quantity $g \ d$ equals $\frac{1}{2} v^2$ (see point 1) and therefore $\sqrt{g \ d} = v/\sqrt2$, about $0.7$ times the final velocity of the coconut.

3) Should I avoid thinking about units when trying to solve a problem?

No, please continue doing so! As others have remarked, you have discovered the power of dimensional analysis: with very little effort you can get an excellent insight into the functional dependencies. In your case you found out that the final velocity is some constant time the square root of $g$ times the distance.

4) Does every units manipulation result into something that means something in the real world, or does some manipulation just end up in non sense?

As long as your manipulations are right, there is always some meaning (although it can on occasions be a somewhat 'contorted' meaning).

Johannes
  • 19,343