GenerateRandomSearch

Ladder Angle Calculator

A ladder has one angle that is right and a range either side of it that is not. Too upright and it can tip backwards as you lean; too shallow and the foot slides out. The rule of thumb is one metre out for every four up, which puts the ladder at about 75 degrees — and this works out where a given setup actually sits, along with how high it genuinely reaches.

What this generator does

Treats the ladder, the wall and the ground as a right-angled triangle: the reach follows from the length and the base distance, and the angle from the ratio between them. It then reports whether that angle falls within the recommended range.

How to use this tool

  1. Generate a setup and read the angle.
  2. Compare the height-to-base ratio against the four-to-one the rule asks for.
  3. Note the reach — it is always less than the ladder's length, and the difference grows as the angle shallows.
  4. Remember the ladder must extend past whatever you are stepping onto.

Understanding the controls

Generate
Produces a ladder between 2 and 8 metres with a base distance that is sometimes the recommended one and sometimes deliberately not, so both verdicts appear.
Seed
Any word reproduces exactly the same setup.

Common use cases

  • Checking a ladder is set at a sensible angle before climbing
  • Working out what a ladder of a given length can actually reach
  • Teaching Pythagoras and trigonometry with a real consequence
  • Toolbox talks and site safety briefings
  • Setting the same worked example twice from a seed

How this generator works

The three lengths must satisfy Pythagoras, and the angle is computed independently from the two shorter sides — so the check verifies both, and either would catch an error the other missed. The four-to-one rule corresponds to about 75 degrees, and the verdict is drawn from the angle rather than from the ratio, which keeps the two statements independent.

Randomness and fairness

The ladder length and base distance are random; the geometry is exact. A seed reproduces the same setup exactly and is therefore explicitly not cryptographically secure. Without a seed the browser's cryptographically secure generator is used.

For how randomness is produced across the whole site, see how Generate Random works.

Limitations and good to know

  • Geometry only. It does not consider ground firmness, footing, tying off, load, or the condition of the ladder — all of which matter more than the angle.
  • The requirement to extend about a metre past a landing surface is mentioned but not included in the reach figure.
  • A straight ladder against a vertical wall on level ground; stepladders and uneven ground are different problems.
  • This is a geometric aid, not a safety assessment, and does not replace proper training or a risk assessment.
  • Setups are not stored between visits; seed one you want again.

Privacy and your data

The geometry is computed in your browser. Nothing about the setup or your seed is transmitted or kept.