- Joined
- Sep 20, 2022
- Messages
- 269
- Reaction score
- 40
I have a strong dislike for number theory, its feels like I'm reading a numerology book.
But I'm working on some problems that I suspect use Diophantine equations, and brute force is not fast enough.
What I'm doing now is writing a program to solve equations like
The idea is that I take the solutions from that program, and use it to speed up the brute force programs.
I got ChatGPT to walk me through the solution of one example.
It was mostly wrong, but its approach pointed me in the right direction, so I give it points for that.
But I'm working on some problems that I suspect use Diophantine equations, and brute force is not fast enough.
What I'm doing now is writing a program to solve equations like
a*a = 315k - 20The idea is that I take the solutions from that program, and use it to speed up the brute force programs.
I got ChatGPT to walk me through the solution of one example.
It was mostly wrong, but its approach pointed me in the right direction, so I give it points for that.