FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
I Found Hidden Solutions to a Viral Math Puzzle — Here's How
NewsTools

I Found Hidden Solutions to a Viral Math Puzzle — Here's How

via Dev.toTyson Cung2w ago

A video went viral recently showing a neat math trick: Take a number, find its nth root, and check if that equals the digit sum minus n. The original showed just 4 examples: Expression Digit Sum − n Result √25 = 5 (2+5) − 2 = 5 ✅ √64 = 8 (6+4) − 2 = 8 ✅ ³√125 = 5 (1+2+5) − 3 = 5 ✅ ³√4096 = 16 (4+0+9+6) − 3 = 16 ✅ Cool party trick. But as a developer, my first thought was: are there more? Brute-Forcing the Answer I wrote a simple script to check every combination: def digit_sum ( n ): return sum ( int ( d ) for d in str ( n )) solutions = [] for n in range ( 2 , 20 ): # root degree (2=square, 3=cube...) for number in range ( 1 , 1_000_000 ): # check up to 1 million root = round ( number ** ( 1 / n )) # Verify it is a perfect nth root if root ** n != number : continue # Check the pattern: nth_root == digit_sum - n if root == digit_sum ( number ) - n : solutions . append (( n , number , root )) print ( f " { n } root( { number } ) = { root } " f " (digit sum { digit_sum ( number ) } - { n

Continue reading on Dev.to

Opens in a new tab

Read Full Article
12 views

Related Articles

Best Buy is selling last year's LG OLED TV for 50% off right now - and I highly recommend it
News

Best Buy is selling last year's LG OLED TV for 50% off right now - and I highly recommend it

ZDNet • 5d ago

News

Pondering Effects

Lobsters • 5d ago

Anker’s 160W Prime Charger can power three devices at once, and it’s $50 off
News

Anker’s 160W Prime Charger can power three devices at once, and it’s $50 off

The Verge • 5d ago

News

How I Started Earning Online at 15 Using Telegram Bots (From Odisha, India)

Medium Programming • 5d ago

The Day My Internet Stopped… and My Life Started
News

The Day My Internet Stopped… and My Life Started

Medium Programming • 5d ago

Discover More Articles