Tagged Questions
8
votes
2answers
230 views
Is there a way to use functions like Prime[n] within Solve[]?
I'm trying to see if a number can be written as the sum of two prime numbers. Ideally, I would like to use
Solve[Prime[n] + Prime[m] == 100, {n, m}]
But that ...