Multiply large integers faster by reducing 4 half-size multiplications to 3. Use Step / Auto to see split → Z0/Z1/Z2 → combine.
Tip: Try 1234 × 5678. We auto-pad digits to a power of 2 (assumption in pseudocode).
Each node is a Karatsuba(…) call. You should see 3 children: Z0, Z2, Z1.
Watch how the algorithm replaces 4 multiplications with 3 each level.