12 Questions About Random Spinners Answered
A random spinner looks simple — a wheel divided into wedges, you press a button, it lands on one — but the questions people ask about them often go deeper than the surface. Is the randomness real? Can the tool be rigged? Does weighting actually work? What about ties? This FAQ covers twelve of the most common questions, with enough technical detail to actually answer them rather than just gesture at an answer.
1. Is a random spinner actually random?
Yes, in the practical sense. A digital random spinner uses a pseudo-random number generator (PRNG) built into your browser — typically JavaScript's Math.random() or, in newer implementations, the cryptographically stronger crypto.getRandomValues(). For a spinner choosing among 10 options, even the older Math.random() is more than random enough — the bias is well below any threshold a human could detect across thousands of spins.
In the formal sense, a PRNG is deterministic given its seed, so it is not "true" randomness in the way radioactive decay or atmospheric noise is. But for practical purposes — picking a student, choosing a restaurant, breaking a tie — pseudo-randomness is indistinguishable from true randomness.
2. Can a random spinner be rigged?
A well-designed spinner cannot be rigged in the sense of "the developer secretly steered it toward a specific outcome." But there are two real ways the result can be biased:
1. Animation theater vs actual randomness. Some spinners pick the result first and then animate the wheel toward that result. This is fine — the random choice was made fairly. But some implementations could in principle pick the result based on something else (e.g., the time of day, or which option you "want") and then animate. There is no way to know from looking at the wheel alone. Trust depends on the tool's reputation and, ideally, open source code.
2. Weighting that is not displayed. If a wedge is weighted to come up more often, but the visual wedge sizes are equal, the spinner is technically rigged from a user-perspective even though it is functioning as designed. Good spinners either (a) make wedge size match weight, or (b) clearly label weighted spinners.
The Screen Ruler spinner shows wedge sizes proportional to weight and picks the result from the same random number that drives the animation, so what you see is what you got.
3. Does weighting actually change the outcome?
Yes. Weighting works exactly as advertised. If you assign weights of 3, 1, 1 to three options, the probabilities are 3/5, 1/5, 1/5 — the first option comes up 60 percent of the time on average across many spins.
The math is straightforward: weights are summed to a total, and a random number between 0 and the total picks which wedge the result falls into. A weight of 0 means the wedge is never picked (which is sometimes useful for keeping an option visible but inactive).
The thing to watch out for is small sample size. Over 5 spins, a 60/20/20 spinner can absolutely land on the 60-percent option once and the 20-percent option three times. Over 500 spins it will converge to the weights. If you are using weighting for a one-off decision, the weighting reflects your stated preference but does not guarantee a specific outcome.
4. How many wedges can a spinner have?
Technically, hundreds. Practically, more than about 30 wedges become hard to read and the wheel looks crowded. For 50+ options, most users prefer a list-based randomizer (e.g., "pick a random student from this list of 80") rather than a visual wheel.
For a typical classroom of 25-30 students, a spinner is still readable. For a family deciding on dinner with 10 options, the wheel looks great. For a tournament with 64 entries, a list randomizer or bracket-style tool is a better fit.
5. Can I save spinner configurations?
Most digital spinners save configurations to your browser's local storage, so they persist across sessions on the same browser. They typically do not sync across devices unless you sign in — the Screen Ruler spinner is no-account and uses local storage only, which means your saves are on the device you made them on.
If you want a configuration to follow you between a phone and a desktop, you can usually export the wedges as a list (e.g., a comma-separated string) and paste it into the spinner on the other device. It is a manual sync but it works.
6. Does the spinner remember past results?
By default, no — each spin is independent and the spinner does not avoid repeating recent results. Some spinners offer a "remove after spin" or "no repeats" mode where a wedge is greyed out (or removed) after being picked, so you can spin through an entire list without repeats.
For "without replacement" use cases — picking a random order for 5 students to present, choosing tonight's dinner from a 7-day menu — the no-repeats mode is what you want. For "with replacement" cases — picking a student to answer questions throughout a period — leave it off so any student can be picked at any time.
7. What is the difference between a spinner and a random number generator?
Conceptually, nothing. Both produce a random selection from a set of options. The spinner adds three things on top of a raw random number generator:
- Visual feedback. Watching the wheel spin produces a small dopamine hit and a sense of suspense that a number reveal does not. This matters for engagement, especially in classrooms or with families.
- Named outcomes. A spinner displays "Sarah" or "Thai food" rather than "3" or "7." You do not have to remember which number maps to which option.
- Configurable weighting. Most spinners include built-in weighting; raw RNGs typically do not.
For a quick, no-fanfare random pick — what number from 1 to 100 — a number generator is faster. For a classroom decision or family vote, a spinner is the better UX.
8. Can a spinner break ties?
Yes, and this is one of its most common uses. Two options tied for first place? Load just those two into a spinner with equal weights and spin. The result is the tiebreaker.
The advantage over a coin flip is that the spinner displays the actual option names rather than abstract heads/tails, which makes the result feel more committal. "The spinner picked Italian" is a clearer decision than "Italian was heads."
9. Is the spinner fair when one wedge is huge and another is tiny?
If wedge size matches weight, yes — the huge wedge is supposed to win more often. If wedge size does not match weight (visual ≠ actual probability), then the spinner is misleading, which is unfair in a UX sense even if mathematically correct.
A well-designed spinner makes wedge size proportional to weight. The Screen Ruler spinner does this. Some other spinners draw all wedges the same size and rely on numerical weights only, which can be confusing for users who expect what they see to match what happens.
10. Can I use a spinner for a contest or giveaway?
For an informal one — picking a winner from your Instagram followers, choosing a raffle winner at a school event — yes, a digital spinner is fine. The result is genuinely random, and you can show the wheel to the audience for legitimacy.
For a high-stakes contest (large cash prize, regulated jurisdiction), you may need a more auditable randomization tool. Some jurisdictions require a Certified Random Number Generator or a witnessed physical draw. A web-based spinner is unlikely to satisfy those requirements.
For a small giveaway, the spinner is fine and the visible randomness is a feature — your audience can see that the pick was fair.
11. Does the spinner work offline?
Most digital spinners are web-based and need an initial page load. Once loaded, they typically run entirely client-side and continue to work without internet, because the randomness comes from the browser's local PRNG, not from a server.
If you are a teacher who might have spotty Wi-Fi in the classroom, load the spinner page before class starts; once it is in the browser, you can spin without a connection.
12. Can I rig the spinner to land on a specific result?
You cannot do this through the user interface of a well-designed spinner. You could in principle modify your local browser's JavaScript to make the spinner land where you want, but doing this for yourself is pointless (you would know you cheated) and doing this for an audience requires technical access they would notice.
There is also a low-tech version: if your spinner allows you to choose between two options "Sarah" and "Not Sarah," and you spin until "Sarah" comes up, then claim "the spinner picked Sarah," you have rigged the outcome through selection rather than through the spinner. The spinner cannot prevent this — only your good faith and the audience's trust can.
The honest version: if you have a preference, just state it. The spinner is for genuinely random or genuinely-acceptable-either-way decisions.
Wrapping up
The randomness of a digital spinner is more than adequate for any use case shy of cryptography or large-prize contests. Weighting works. Configurations save locally. The spinner can do without-replacement runs for orderings. Most edge cases (rigging, fairness, ties) come down to UX design — the Screen Ruler spinner is designed to be transparent about what it is doing, which is usually all a user needs.
If you have a question we did not cover — about a specific use case, edge case, or technical detail — open the spinner and try it. Most questions resolve themselves in a few spins.
Related Articles
15 Questions About Aspect Ratio Calculator Answered
Common questions about aspect ratio calculators — how they work, when to use one, how to interpret outputs, and the edge cases that trip up first-time users.
Aspect Ratio Calculator for Professionals: Advanced Use Cases
How video editors, broadcast engineers, motion designers, and front-end developers use aspect ratio calculators in production workflows — beyond the 16:9 basics.
Using Aspect Ratio Calculator and Screen Ruler Together
A workflow guide for pairing the aspect ratio calculator with the on-screen ruler — matching physical print dimensions to display ratios, verifying device screen ratios, and bridging from pixels to physical inches.