A fraction puzzle game is a logic challenge that asks you to recognize equal parts of a whole, shade the correct number of parts, and reason about whether two fractions describe the same share. In the browser-based Fraction Shape Puzzle, that idea is built around five fixed cards that each show a rectangular shape divided into equal cells, a target fraction, and a live shaded fraction. The visual model follows the textbook meaning of a fraction: the denominator counts the equal parts that make up the whole, and the numerator counts the parts you select. According to OpenStax Prealgebra on visualizing fractions, that equal-part picture is the standard way to introduce a fraction before any calculation begins. The twist in the Fraction Shape Puzzle is that the cards deliberately use different visual denominators for equivalent targets, so the same share of the whole can be reached by shading different numbers of cells. This article walks through how to play, what each card asks for, how the equivalence check works, what the controls do, and how the scoring and run-ending rules behave.

What the Fraction Shape Puzzle actually shows you
Every card in the fraction puzzle game is built around the same idea: a rectangular whole divided into a fixed number of equal cells, with a target fraction printed on the card and a current shaded fraction updated as you shade cells. The denominator of the target matches the count of equal cells, while the numerator is the count you are trying to reach. Because each card uses a different number of cells, the same fraction can require different shading amounts. For example, 1/2 on a four-cell shape needs two cells, but the equivalent share on a different shape with more cells would need a proportionally larger shaded count. That is the core conceptual puzzle: the share of the whole stays the same even when the visual size changes.
The interface also surfaces the working state directly, showing the target fraction, the current shaded fraction, both cross products after a valid check, level progress, distinct errors, feedback, and score. That means every card is auditable: the game does not hide its math, and a player who understands the rule can verify the equivalence calculation on the spot.
How to play Fraction Shape Puzzle
The five-card fraction puzzle game follows a fixed three-step loop. Each card reads the target fraction and the number of equal cells, lets you shade cells with pointer, touch, or keyboard controls, then checks your shape against the target using cross products.
- Read the target and the cell count. Look at the target fraction and the equal-part count for the current card. Plan how many cells need to be shaded to match that share of the whole.
- Shade cells with pointer controls or Arrow keys and Space. Click or tap cells directly, or move the active cell with the arrow keys and press Space to toggle shading. The current shaded fraction updates as you go.
- Press Check shape. The game compares shaded cells against the target using cross products. If shadedCount times the target denominator equals the target numerator times the part count, the card is correct. If not, an empty submission stays incomplete and a nonempty mismatch creates a single recoverable mistake.
The five cards on the way to 1,000 points
The run is fixed: five cards in order, each with a different equal-part shape and a different target fraction. The required shaded counts follow the cross product rule, so a card's numerator over its denominator can be matched by shading a proportional share of a larger visual grid. The table below restates every part count, target fraction, shaded answer, and both cross products for the run.
| Card | Target fraction | Equal parts | Cells to shade | Shaded × target denom | Target num × parts |
|---|---|---|---|---|---|
| 1 | 1/2 | 4 | 2 | 2 × 2 = 4 | 1 × 4 = 4 |
| 2 | 2/3 | 6 | 4 | 4 × 3 = 12 | 2 × 6 = 12 |
| 3 | 3/4 | 8 | 6 | 6 × 4 = 24 | 3 × 8 = 24 |
| 4 | 2/5 | 10 | 4 | 4 × 5 = 20 | 2 × 10 = 20 |
| 5 | 5/6 | 12 | 10 | 10 × 6 = 60 | 5 × 12 = 60 |
Each correct card awards 200 points, so approving all five in order yields exactly 1,000 points. There is no timer, no scoring beyond these fixed approvals, and no level select; the route from 0 to 1,000 is the same on every run.
How the cross product check confirms equivalence
The fraction puzzle game avoids floating-point comparisons entirely. It treats two fractions as equivalent only when their cross products are exactly equal. For a card, the rule is:
shadedCount × targetDenominator = targetNumerator × partCount
For example, on the third card the target is 3/4 with eight equal cells, so you shade six cells. The check is 6 × 4 = 24 on the shaded side and 3 × 8 = 24 on the target side. Because the two cross products are equal, the shaded share and the target share describe the same fraction of the whole. This is the standard cross product equivalence test used in textbook arithmetic, and a Mathematics LibreTexts textbook on equivalent fractions explains the same rule in detail. The game surfaces both products on screen after a valid check, so a player can read off the arithmetic and confirm the equivalence themselves rather than trusting a hidden score.
The implementation rejects unsafe inputs before any check runs. A zero target denominator, an impossible part count, or an out-of-range cross product boundary produces no score change and no error. Unknown, negative, out-of-range, or fractional cell indexes are also treated as atomic no-ops, so stray clicks or stale keyboard input cannot corrupt the run.
Pointer, touch, and keyboard controls
The Fraction Shape Puzzle is built so that the entire run is playable without a mouse. Every cell is at least 44 pixels tall, which gives a comfortable tap target on phones and tablets, and each cell is a real button that responds to a pointer or touch input. Keyboard players move the current cell with the Arrow keys, press Space to toggle shading, and press C to check the shape. Because the arrow keys, Space, and C cover navigation, toggling, and verification, the fraction puzzle game stays fully accessible from the keyboard alone.
The on-screen state shows the target, the current shaded fraction, both cross products after a valid check, the level progress, the number of distinct errors, the latest feedback, and the score. Once a card is approved or the run ends, cell toggles, cursor movement, and checks are frozen so a stray keypress cannot continue to alter a finished board.
Mistakes, restart, and what ends a run
The fraction puzzle game uses a strict, deduplicated error policy. Checking an empty shape shows an incomplete message and does not change the score or the error count, so a player who presses Check before shading anything does not lose a strike. A nonmatching nonempty shaded set creates exactly one recoverable mistake. If the player presses Check again with the same level-and-shaded-mask signature, that repeated wrong submission is deduplicated and does not consume a second error. A different wrong shading, however, produces the second distinct mistake and closes the run.
Restart is always available and restores the first card, an empty shape, zero score, and zero mistakes. All state lives in the browser, so a refresh or an explicit restart resets the entire fraction puzzle game to the same starting position. There is no account, no upload, no API call, no model call, no assessment service, and no new dependency. The standard Boss Key from the shared game shell remains available so the board can be hidden quickly. The product is positioned as educational entertainment: the citations support the fraction visualization and equivalence rules, not the product's specific card order, scoring, or error policy.