DEV Community

Michael Lip
Michael Lip

Posted on • Originally published at zovo.one

Solution Dilution Math: C1V1 = C2V2 and When It Does Not Apply

The dilution equation C1V1 = C2V2 is one of the most widely used formulas in science and industry. Laboratories, pharmacies, cleaning product manufacturing, agriculture, and food processing all rely on it daily. And while the formula itself is simple, the application has more pitfalls than most people expect.

The formula and what it means

C1V1 = C2V2

  • C1 = initial concentration
  • V1 = initial volume (the volume of concentrated solution you need)
  • C2 = final (desired) concentration
  • V2 = final (desired) total volume

You are solving for V1: how much of the concentrated stock solution do you need to make your desired dilution.

V1 = (C2 x V2) / C1

Example: You have a 10% bleach solution and need to make 500 mL of a 0.5% solution.

V1 = (0.005 x 500) / 0.10 = 25 mL

Take 25 mL of the 10% solution and add water to bring the total volume to 500 mL (add 475 mL of water).

When C1V1 = C2V2 does not work

This formula assumes the solute and solvent volumes are additive. For dilute aqueous solutions, this is approximately true. For concentrated solutions, especially those involving organic solvents, alcohols, or acids, volumes are not additive.

Mixing 500 mL of ethanol with 500 mL of water does not give you 1000 mL. You get approximately 970 mL because the molecules pack more efficiently in the mixture. For precise work with concentrated solutions, you need to work in moles and account for volume contraction.

The formula also assumes the concentration is directly proportional to the amount of solute. This holds for most practical dilutions but breaks down at extremely high concentrations where solubility limits, viscosity, or chemical equilibrium effects change the relationship.

Serial dilution

When you need very large dilution factors, a single dilution step can introduce significant measurement error. Measuring 0.01 mL of stock solution is impractical. Instead, use serial dilution: multiple sequential dilutions.

To create a 1:10,000 dilution:

  • Step 1: 1:100 dilution (1 mL stock + 99 mL diluent)
  • Step 2: 1:100 dilution of the step 1 result (1 mL + 99 mL)

Each step is a manageable 1:100 measurement, but the combined result is 1:10,000. The measurement error in each step is small, and they partially cancel rather than compound.

Serial dilutions are standard in microbiology (bacterial plate counts), pharmacology (dose-response curves), and analytical chemistry (standard curves).

Common applications

Cleaning solutions: Commercial concentrates specify dilution ratios. "Dilute 1:32" means 1 part concentrate to 32 parts water. 1 oz concentrate in 32 oz water, or approximately 1/4 cup per gallon.

Agriculture: Pesticide and fertilizer concentrates are diluted to application strength. Errors here can kill plants (too concentrated) or be ineffective (too dilute). Following the label dilution precisely is both a legal requirement and a practical necessity.

Laboratory work: Buffer preparation, reagent dilution, and standard curve preparation all use C1V1 = C2V2. At the bench, the most common error is confusing the volume to add (V1) with the final volume (V2). You add V1 of stock, then bring the total to V2 with diluent.

Pharmacy: IV drip concentrations, oral solution preparations, and compounded medications require exact dilution calculations. The consequences of errors here are severe.

The calculator

For quick, accurate dilution calculations including serial dilution planning, I built a dilution calculator that solves for any variable in the C1V1 = C2V2 equation and handles serial dilution step calculations.


I'm Michael Lip. I build free developer tools at zovo.one. 500+ tools, all private, all free.

Top comments (0)