Math Circle Challenge: The Splitting Squares

The Problem: Find all perfect squares less than 2000 that can be split into two parts (left and right), where both parts are also non-zero perfect squares.

Phase 1: The Setup

Instead of checking every number from 1 to 2000, we work smart. We categorize the numbers by how many digits they have.

Phase 2: The Hunt

Case A: 2-Digit Numbers

We must split these into 1 digit | 1 digit.

Case B: 3-Digit Numbers (100–999)

Possible Splits: 1 | 2 or 2 | 1.

Pattern 1: [Square] | [Square] (Right is 2-digits)

Left digit must be 1, 4, or 9.

Pattern 2: [Square] | [Square] (Left is 2-digits)

Left part must be a 2-digit square (16, 25, 36...).

Case C: 4-Digit Numbers (1000–1999)

Constraint: We are only looking under 2000. Therefore, the first digit must be 1.

Pattern 1: 1 | 3-digits

Pattern 2: 2-digits | 2-digits

Pattern 3: 3-digits | 1-digit

Final Results

Number Root Split Left Root Right Root
49 4, 9
169 13² 16, 9
361 19² 36, 1
1225 35² 1, 225 15²
1444 38² 144, 4 12²
1681 41² 16, 81

* Note: Solutions containing '00' or '0' (like 100 or 400) were excluded as "cheats".