Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
3k views

Finding Integers With A Certain Property - Project Euler Problem 221

I've become very addicted to Project Euler recently and am trying to do this one next! I've started some analysis on it and have reduced the problem down substantially already. Here's my working: ...
6
votes
2answers
2k views

Project Euler Problem 233

I've decided to tackle Project Euler problem 233 next but I'm having some major problems! I've done some analysis and have made some quite nice progress but I've become stuck now. Here's my working: ...
3
votes
2answers
158 views

Threes, finding 23 sets of x y z values satisfy the condition x^3+y^3=1+z^3

Now I have completed the finding 23 sets of x y z values satisfy the condition x^3+y^3=1+z^3 & x int setsFound = 0; System.out.println("The first 23 sets ordered by increasing x."); for (long x = ...
2
votes
1answer
31 views

Solving Linear Diophantine Equation Systems in C++

For my research I'm confronted with a system of linear diophantine equations. I found several research papers on the topic but before I start to create a solver myself, I would like to know if one ...
0
votes
2answers
86 views

How can I plot a list returned by the mathematica solution to in bounded integer equations

So I have a set of bounded diophantine equations that specify lines on the plane. I want to make mathematica plot the intersection of two of these equations so I can see what they look like. So far ...
0
votes
1answer
78 views

algorithm for solving systems of linear Diophantine inequalities

Is there a reasonably fast algorithm for solving systems of linear Diophantine inequalities?