No history yet

Dimensional Analysis Basics

The Rules of the Game

In physics and engineering, equations aren't just about numbers. They're about quantities, and these quantities have dimensions. You can't add a length to a temperature, or equate a force with a velocity. It just doesn't make physical sense.

This idea is called the principle of dimensional homogeneity. It states that for any physical equation to be valid, the dimensions on both sides of the equals sign must be the same. Think of it as a fundamental sanity check for your math.

An equation is dimensionally homogeneous if the dimensions of the left side are the same as the dimensions of the right side.

Let's look at a simple example: distance equals speed multiplied by time. We can write this as d=v×td = v \times t. Now, let's check the dimensions. We'll use square brackets [][ ] to denote "the dimensions of."

Distance, dd, is a length, which we represent with [L][L]. Speed, vv, is length per time, so its dimension is [L/T][L/T]. Time, tt, is just time, so its dimension is [T][T].

Plugging these into the equation:

[L]=[L][T]×[T][L] = \frac{[L]}{[T]} \times [T]

The [T][T] on the right side cancels out, leaving us with [L]=[L][L] = [L]. The equation is dimensionally homogeneous. It works.

What if we proposed that distance equals speed? d=vd = v? Let's check the dimensions: [L]=[L/T][L] = [L/T]. This is not balanced. The equation is physically meaningless.

The Building Blocks

Most physical quantities we encounter in mechanics can be broken down into three fundamental dimensions:

  • Mass [M]
  • Length [L]
  • Time [T]

These are our basic building blocks. Other quantities, called derived quantities, are combinations of these three. For example, we saw that speed has the dimensions of length divided by time.

QuantitySymbolFormulaDimensions
AreaALength × Width[L2][L^2]
VolumeVArea × Height[L3][L^3]
VelocityvDistance / Time[L/T][L/T]
AccelerationaVelocity / Time[L/T2][L/T^2]
ForceFMass × Acceleration[ML/T2][ML/T^2]
PressurePForce / Area[M/LT2][M/LT^2]
Energy (Work)EForce × Distance[ML2/T2][ML^2/T^2]
DensityρMass / Volume[M/L3][M/L^3]

Notice how each derived quantity can be expressed purely in terms of M, L, and T. This allows us to analyze any equation by reducing all its components to their fundamental dimensions.

Making Numbers Dimensionless

So why do we care so much about dimensions? Because by understanding them, we can simplify complex problems. The technique for doing this is called nondimensionalization.

When we nondimensionalize an equation, we remove the dimensions. We do this by dividing variables by other variables or constants that have the same dimensions. This process creates dimensionless parameters, which are pure numbers. Working with these pure numbers makes the problem simpler and the solution more general. A solution expressed in dimensionless terms is independent of the system of units used.

Let's see how it works with a practical example: a falling object. The distance, dd, an object falls from rest under gravity is given by the equation:

d=12gt2d = \frac{1}{2} g t^2

Here, gg is the acceleration due to gravity and tt is the time. Let's say we have a characteristic length, LcL_c, and a characteristic time, TcT_c, that are relevant to our specific problem. For instance, LcL_c could be the height of a building, and TcT_c could be the time it takes for an object to fall that height.

We can define dimensionless variables, often marked with an asterisk (*), by dividing our original variables by these characteristic quantities:

d=dLcandt=tTcd^* = \frac{d}{L_c} \quad \text{and} \quad t^* = \frac{t}{T_c}

Now, we rearrange these to solve for dd and tt: d=dLcd = d^* L_c and t=tTct = t^* T_c. Let's substitute these back into our original falling object equation:

dLc=12g(tTc)2d^* L_c = \frac{1}{2} g (t^* T_c)^2

To make the equation fully dimensionless, we want to get rid of all the original variables and constants. Let's divide both sides by LcL_c:

d=gTc22Lc(t)2d^* = \frac{g T_c^2}{2 L_c} (t^*)^2

This equation relates our dimensionless distance, dd^*, to our dimensionless time, tt^*. The term in front, gTc22Lc\frac{g T_c^2}{2 L_c}, is a dimensionless group of parameters. The equation is now much simpler. Instead of dealing with three variables (d,g,td, g, t), we now have an equation relating two dimensionless variables (d,td^*, t^*) with a single dimensionless constant that combines all the physics of the original problem.

Quiz Questions 1/5

What is the core idea of the principle of dimensional homogeneity?

Quiz Questions 2/5

Force is defined as mass times acceleration (F=maF = ma). Given that acceleration has dimensions of [L/T2][L/T^2], what are the fundamental dimensions of Force?

Dimensional analysis is a powerful tool. By ensuring our equations are homogeneous and understanding the fundamental dimensions, we can check our work and simplify problems before we even start solving them.