AnyLearn
All lessons
Scienceintermediate

Choosing a Material Without Guessing

There are tens of thousands of engineering materials and no way to compare them by intuition. This lesson builds the material index, the single combined number that ranks candidates for a stated job, shows why steel, aluminium and titanium have almost identical stiffness per kilogram, and covers the environment and processing constraints that overrule the ranking.

Updated · AI-authored, review-gated · how lessons are made

Not signed in: your progress and quiz score won't be saved.
Progress1 / 10

The wrong question

"Which material is strongest?" has an answer and it is almost never useful. Strength alone ignores weight, cost, temperature, corrosion, how the part will be made, and what failure mode you are actually guarding against.

The right question is narrower and has three parts: what does this part have to do, what is fixed, and what are you trying to minimise? A tie rod carrying a set load, with a fixed length, minimising mass, is a different problem from a beam carrying a set deflection, and they rank materials differently.

Key idea: Selection is an optimisation with a stated objective and stated constraints, not a lookup. Once the problem is phrased that way, a single combined number, the material index, ranks every candidate correctly, and the arithmetic that produces it is short.

Full lesson text

All 10 steps on one page, for reading, reference, and search.

Show

1. The wrong question

"Which material is strongest?" has an answer and it is almost never useful. Strength alone ignores weight, cost, temperature, corrosion, how the part will be made, and what failure mode you are actually guarding against.

The right question is narrower and has three parts: what does this part have to do, what is fixed, and what are you trying to minimise? A tie rod carrying a set load, with a fixed length, minimising mass, is a different problem from a beam carrying a set deflection, and they rank materials differently.

Key idea: Selection is an optimisation with a stated objective and stated constraints, not a lookup. Once the problem is phrased that way, a single combined number, the material index, ranks every candidate correctly, and the arithmetic that produces it is short.

2. Deriving a material index

Take the simplest case: a tie of length LL that must carry force FF without yielding, minimising mass. Cross-section AA is free.

The constraint is F/AσyF/A \leq \sigma_y, so the smallest usable area is A=F/σyA = F/\sigma_y. Substitute into the mass:

m=ALρ=FLρσy=(FL)(ρσy)m = A L \rho = \frac{F L \rho}{\sigma_y} = (F L)\left(\frac{\rho}{\sigma_y}\right)

The first bracket is fixed by the problem. The second is all material. Minimising mass therefore means maximising

M=σyρM = \frac{\sigma_y}{\rho}

which is specific strength. Repeat the derivation for a beam in bending, where AA enters the second moment of area rather than linearly, and you get σy2/3/ρ\sigma_y^{2/3}/\rho instead. Same method, different exponent, and the exponent changes the winner.

In practice: The exponent comes from the geometry, so a material that wins for a tie can lose for a beam. This is why "the best material for aerospace" is not a well-formed statement, and why a real selection is done per component.

3. Strength per kilogram

Specific strength: yield or tensile strength per unit density
kilonewton-metres per kg02004006008001k5186115203938steeloakaluminiumtitaniumCFRP
Source: Computed as strength divided by density: steel 400 MPa / 7850, oak 60 / 700, 6061-T6 310 / 2700, Ti-6Al-4V 900 / 4430, unidirectional CFRP 1500 / 1600

Steel is the strongest of these in absolute terms and the worst per kilogram. Oak beats it. Titanium is four times better, which is why it appears in landing gear and engine mounts despite costing many times more per kilogram.

Unidirectional carbon fibre composite is another factor of five beyond titanium, and that number carries a large caveat: it applies along the fibres only. Across them the same material is weaker than the polymer holding it together.

4. The result that surprises people

Do the same calculation for stiffness per unit mass, E/ρE/\rho, and something odd appears.

MaterialEE (GPa)Density (kg/m³)E/ρE/\rho (MN m/kg)
Structural steel210785026.8
Ti-6Al-4V116443026.2
6061-T6 aluminium70270025.9
Oak, along grain1170015.7
Unidirectional CFRP150160093.8

Steel, titanium and aluminium are within four percent of each other. They differ by a factor of three in stiffness and by exactly the same factor in density, and the two cancel.

Key idea: Swapping between structural metals cannot make a stiffness-limited part lighter. It is not that the gain is small: there is no gain. If your part is stiffness-limited you must change the geometry, put the material further from the neutral axis, or leave metals entirely. Composites are the only entry in the table that breaks the pattern, and that is the actual reason they took over aerospace primary structure.

5. Screening candidates in code

With indices defined, selection becomes a filter and a sort. The constraints eliminate; the objective ranks.

MATERIALS = [
    # name,             E(GPa), sigma_y(MPa), rho(kg/m3), Tmax(C), cost(/kg)
    ("structural steel",  210,  400,  7850,  450,   1.0),
    ("6061-T6 aluminium",  70,  310,  2700,  150,   3.5),
    ("Ti-6Al-4V",         116,  900,  4430,  400,  35.0),
    ("CFRP (UD)",         150, 1500,  1600,  120,  60.0),
]

def select(materials, min_strength, max_temp, index):
    ok = [m for m in materials if m[2] >= min_strength and m[4] >= max_temp]
    return sorted(ok, key=index, reverse=True)

# lightest tie carrying its load, must survive 200 C
for m in select(MATERIALS, 250, 200, lambda m: m[2] / m[3]):
    print(f"{m[0]:<20} index {m[2] / m[3]:6.3f}   cost/kg {m[5]}")

The 200 degree requirement removes aluminium and CFRP before ranking begins. That ordering matters: constraints are absolute and cannot be traded against the objective, so apply them first and rank only what survives.

6. Why composites win, and what they cost you

A composite puts strong, stiff, brittle fibres in a weak, tough matrix. The fibres carry the load; the matrix transfers it between them, holds their alignment, and protects them. Neither constituent is useful alone.

The reason it works is Griffith's size effect from the fracture lesson: a thin fibre can contain only a small flaw, so it approaches its theoretical strength. Bundling many of them also means a broken fibre sheds load into its neighbours instead of failing the part.

GainCost
Three to four times the specific stiffness of any metalproperties are directional; across the fibres it is weak
Layup can be tailored per load directiondesign and analysis are far harder
No fatigue endurance problem in the fibresmatrix and interface still fatigue and delaminate
Excellent corrosion resistancegalvanic corrosion where carbon touches aluminium

Gotcha: A composite's published strength is along the fibres. A laminate with plies at several angles has a fraction of that number in every direction, because only some plies carry load in each. Quoting the unidirectional figure for a real part overstates it substantially.

7. So why is the whole aircraft not carbon fibre?

Predict first

CFRP is three times stiffer per kilogram than any metal and does not corrode. Why is a modern airliner still roughly half metal by weight?

Key idea: The index ranks materials on one objective. Every reason in that list is a different objective, and real selection is the intersection of several. A material that wins decisively on the metric you optimised and loses on inspectability, repair, or failure warning is a material you have not finished evaluating.

8. Temperature is measured relative to melting

Whether a material creeps depends not on the absolute temperature but on the homologous temperature, the ratio T/TmT/T_m in kelvin. The rule of thumb is that creep becomes a design concern above about 0.4Tm0.4\,T_m.

MetalMelting point0.4 TmT_mCreeps at
Tin505 K202 K-71 C, so always
Lead600 K240 K-33 C, so always
Aluminium933 K373 K100 C
Copper1358 K543 K270 C
Steel1811 K724 K451 C
Tungsten3695 K1478 K1205 C

Gotcha: Solder creeps at room temperature. Tin melts at 232 degrees Celsius, so a solder joint sitting on a desk is already above 0.4 of its absolute melting point, and a joint under constant mechanical load will slowly deform for its whole life. This is why solder is specified for electrical connection and never as a structural fastening, and why lead roofing visibly ripples after decades.

9. The environment gets a vote

A material that passes every mechanical check can still fail because of what surrounds it, and these mechanisms produce failures far below any static strength.

  • Galvanic corrosion. Two different metals in electrical contact with an electrolyte between them form a battery, and the less noble one dissolves. Steel fasteners in an aluminium structure, or carbon fibre against aluminium, are the classic pairings.
  • Stress corrosion cracking. A specific alloy in a specific chemical environment under sustained tensile stress cracks at a stress it would otherwise carry indefinitely. Austenitic stainless steel in chlorides is the textbook case, and the alloy is otherwise excellent.
  • Hydrogen embrittlement. Hydrogen from plating, pickling or cathodic protection diffuses into high-strength steel and drops its toughness sharply. It is a delayed failure, appearing hours or days after loading.
  • Fretting. Two surfaces rubbing microscopically at a joint break through the oxide layer and initiate fatigue cracks far earlier than the fatigue calculation predicted.

In practice: Each of these is triggered by a combination, material plus environment plus stress, and none appears in a datasheet's strength figures. Checking them is a separate pass over the design.

10. A selection procedure

Everything in this course collapses into a sequence, and the order is what stops you optimising the wrong number.

  1. State the function, the constraints, and the objective. What it must do, what cannot change, what you are minimising. Vague answers here produce a defensible-looking selection of the wrong material.
  2. Screen on constraints. Temperature, environment, minimum toughness, forbidden materials. These are absolute and eliminate candidates outright.
  3. Rank on the index. Derive it from the geometry rather than reaching for specific strength by default, since the exponent changes the winner.
  4. Check every failure mode separately. Yield, buckling, fracture with a realistic assumed flaw, fatigue over the service cycles, creep at temperature, corrosion in the actual environment. A part is only as good as its worst mode.
  5. Check that it can be made. Process determines achievable geometry, achievable tolerance, and the defect population you inherit. A casting and a forging of the same alloy are not the same material for fatigue purposes.
  6. Then look at cost, including processing, joining, inspection and eventual repair, rather than price per kilogram.

Key idea: The index tells you what to try. Steps 4 and 5 are what stop you shipping it.

Check your understanding

The lesson ends with a 5-question quiz. Take it in the player above to see your score.

  1. For a tie of fixed length carrying a fixed load with minimum mass, which quantity should be maximised?
    • Yield strength divided by density
    • Yield strength alone
    • Young's modulus divided by density
    • Yield strength to the two-thirds power divided by density
  2. Steel, titanium and aluminium all have E/rho near 26 MN m/kg. What follows?
    • They can be substituted freely for any structural purpose
    • Swapping between them cannot reduce the mass of a stiffness-limited part
    • They will all fail at the same load
    • Their strengths must also be similar
  3. A solder joint under constant mechanical load slowly deforms at room temperature. Why?
    • Solder work-hardens and eventually cracks
    • Room temperature exceeds solder's yield strength
    • Tin melts at 232 C, so room temperature is already above 0.4 of its absolute melting point and it creeps
    • Thermal cycling from nearby components fatigues it
  4. A published CFRP tensile strength of 1500 MPa applies to which case?
    • Any loading direction, since composites are isotropic once cured
    • Compression as well as tension
    • A quasi-isotropic laminate with plies at several angles
    • Loading along the fibres in a unidirectional layup only
  5. In a selection procedure, why are constraints applied before ranking on the index?
    • Because constraints are absolute and cannot be traded against the objective
    • Because it is computationally faster
    • Because the index is only valid for materials that pass the constraints numerically
    • Because constraints are usually more accurate than index values

Related lessons

Science
intermediate

Fracture and Fatigue: How Things Actually Fail

Most catastrophic structural failures happen far below yield strength, because a crack was already there. This lesson builds the fracture mechanics that predicts the largest crack a part can carry, shows why raising strength shrinks that number, and works through the two disasters that turned fatigue from a curiosity into a design discipline.

10 steps·~15 min
Science
intermediate

Dislocations: Why Metals Bend and Ceramics Shatter

A dislocation is a line of atomic misfit that lets a crystal slip a few bonds at a time, and its mobility decides whether a material bends or breaks. This lesson explains how it moves, why some crystal structures permit it and others do not, and the four standard ways engineers obstruct it to buy strength at the price of ductility.

10 steps·~15 min
Science
intermediate

Why Materials Are Not as Strong as They Should Be

A perfect copper crystal should yield at about 7 GPa. Real annealed copper gives way at 10 MPa, hundreds of times lower, and the gap took thirty years to explain. This lesson separates stiffness from strength from toughness, works the theoretical calculation, and shows why the answer turned out to be defects rather than arithmetic.

10 steps·~15 min
Science
intermediate

The unculturable majority: reading microbes we cannot grow

Most microbes on Earth have never been grown in a laboratory, so for a century microbiology studied the small fraction that cooperated. This lesson covers the great plate count anomaly, how 16S sequencing and metagenomics read organisms directly, and what those methods still cannot tell you.

11 steps·~17 min