| New Reply |
How to solve for solutions to the diophantine 5b^2*c^2 = 4a^2(b^2+c^2) |
Share Thread | Thread Tools |
| Dec6-12, 05:39 PM | #35 |
|
|
How to solve for solutions to the diophantine 5b^2*c^2 = 4a^2(b^2+c^2)I simplified all results using the gcd's. then I tried randomly picking primitives, and all seemed legitimate... |
| Dec6-12, 07:05 PM | #36 |
|
|
However this might be by chance or might depend on that particular limit. And that is still a lot of (primitive) starting points... |
| Dec6-12, 07:09 PM | #37 |
|
|
Most just state that these generating functions generate infinitely many solutions, but they are not all the solutions, meaning there might be more. They sometimes use modular arithmetic to show the non-existence of a solution. I would like to know when we are sure that we have found all the primitives. |
| Dec6-12, 07:19 PM | #38 |
|
|
|
| Dec6-12, 07:28 PM | #39 |
|
|
|
| Dec6-12, 07:28 PM | #40 |
|
|
|
| Dec6-12, 07:43 PM | #41 |
|
|
only confidently talk about primitives in case of the basic Pythagorean triples. I want to know : 1) if I am supposed to extent to negative m,n values 2) what ranges of m & n will give me all the primitives For example if I want to find all solutions below a certain limit, say 10K, what is the complete set of primitives I need to start with? |
| Dec6-12, 07:58 PM | #42 |
|
|
|
| Dec6-12, 08:01 PM | #43 |
|
|
Can you explain me what makes this situation different from the Pythagorean triple situation? |
| Dec6-12, 08:18 PM | #44 |
|
|
(otherwise I would have found the solution by now )I think they are both the same. I want to know where to stop finding the primitives and jump to finding the all other non-primitive solutions. If the answer is that m,n should span 0..limit, then that is a really big range. I want to know if this is the most efficient way, i.e. we can't avoid the big search. I tried to trim it by jumping on evens for m, and on odds for n, etc. but each case missed some solutions. I tried squareroot(limit), which worked. I tried cuberoot(limit), seemed to work, but I guess it was case-specific. |
| Dec6-12, 08:27 PM | #45 |
|
|
How can we efficiently generate all solutions? i.e. how can we avoid spending time on degenerate solutions, because it seems like there are lots of them... |
| Dec7-12, 12:43 AM | #46 |
|
Blog Entries: 2
|
|
| Dec7-12, 09:40 AM | #47 |
|
Blog Entries: 2
|
My Mathematical program (for odd f )is the following: t = 1; tx = t + 401; While[t < tx, Print[t, Solve[ 4*x*x + y*y == 5*t*t && GCD[x, y] == 1 && x > 0 && y > 0, {x, y}, Integers]]; t += 4] for investigating a specific product like t = 13*17*37*29 I set tx = 1. |
| Dec8-12, 10:30 AM | #48 |
|
Blog Entries: 2
|
I have a further observation: If 4x^2+y^2=f has at least one primitive solution and 5 does not divide f, then there are two primitive solutions for f (not divisible by 5) in 4x^2 + y^2 = 5f, (x1,y1) and (x2,y2) all positive values such that x2*y1 +/- x1*y2 = +/- 2f^2). Never mind my post about f being prime, f = 29*17 is a counter example to that conjecture.
Below is a proof; The pell equation 4a^2+b^2 = 5f^2 has the solution set a = m^2 -2mn -4n^2, b = m^2 +8mn -4n^2, f = m^2 + 4n^2. If (m,n) form one solution set then (m,-n) will form a 2nd solution set (p,q). Also, my experience is that qa + pb = 2*f^2. We need to show that q*(m^2-2mn-4n^2) + p*(m^2+8mn -4n^2) = 2*(m^2+4n^2)^2. Substitute q =b'(m,-n) =m^2-8mn-4n^2 and p = a'(m,-n) =m^2+2mn-4n*2 then (m^2-8mn-4n^2)*(m^2-2mn-4n^2) + (m^2+2mn-4n^2)*(m^2+8mn-4n^2) = m^4 -10m^3*n+(16-8)m^2*n^2+40n^3*m+16n^4 + m^4 +10m^3*n + (16-8)m^2*n^2 - 40n^3*m + 16n^4 = 2*(m^4 + 8m^2*n^2 + 16n^4) = 2*(m^2+4n^2). Q.E.D. |
| Dec8-12, 11:13 AM | #49 |
|
Blog Entries: 2
|
If you have some information on the upper range for searching for primitive solutions being the cube of f then would you provide it? I am not sure what you have in mind but am interested. |
| Dec8-12, 12:47 PM | #50 |
|
|
order of forth root: 2*limit^(0.25) to be precise. Also using gcd = 1, skips many candidates. Focusing on signs and parity also cuts it down. I kept a hash of the results to avoid repeats, but if I a nice method is outlined there shouldn't be a need to store the results. |
| Dec8-12, 02:46 PM | #51 |
|
Blog Entries: 2
|
|
| New Reply |
| Thread Tools | |
Similar Threads for: How to solve for solutions to the diophantine 5b^2*c^2 = 4a^2(b^2+c^2)
|
||||
| Thread | Forum | Replies | ||
| What is a systematic method to solve this Diophantine equation? | Calculus & Beyond Homework | 6 | ||
| solutions of a diophantine equation | Linear & Abstract Algebra | 1 | ||
| Diophantine and coprime solutions x,y | Linear & Abstract Algebra | 2 | ||
| Accelerated C++ book - no solutions for exercises, should I still solve them? | Engineering, Comp Sci, & Technology Homework | 22 | ||
| Newton (iterative) method to solve a diophantine equation | Linear & Abstract Algebra | 5 | ||