Pythagorean Triangles with one side equal s and hypothenuse equal 2 s+1

  • Context: Graduate 
  • Thread starter Thread starter RamaWolf
  • Start date Start date
  • Tags Tags
    Triangles
Click For Summary

Discussion Overview

This thread discusses Pythagorean triangles with one side equal to \( s \) and the hypotenuse equal to \( 2s + 1 \). Participants explore the integer values of the remaining side, computational experiments, and mathematical formulations related to the problem, including recurrence relations and closed-form expressions.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning
  • Debate/contested

Main Points Raised

  • One participant presents a formula for the remaining side \( d \) using the relationship \( d^2 = t^2 - s^2 \) and provides computational results for specific values of \( s \), \( t \), and \( d \).
  • Another participant introduces a closed-form equation for the sequence \( b_k \) related to the problem, suggesting it simplifies further analysis.
  • Further equations for \( d_k \), \( e_k \), and \( h_k \) are proposed, showing relationships between the sides of the triangles derived from the Euclidean rule for Pythagorean triangles.
  • One participant notes a numerical inspection that reveals a connection between the sequence \( d_k \) and the sequence \( b_{2k+1} \).
  • Another participant introduces a related problem involving Pythagorean triangles with one side equal to \( s \) and the hypotenuse equal to \( 2s - 1 \), providing computational results and recurrence relations for \( m_k \) and \( n_k \).
  • Several participants discuss the potential for further investigations into Pythagorean triangles with hypotenuses of the form \( 2s + k \), suggesting various sequences and relationships that may hold.

Areas of Agreement / Disagreement

Participants express various hypotheses and approaches, but there is no consensus on the best method or the implications of the findings. Multiple competing views remain regarding the relationships and sequences involved.

Contextual Notes

The discussion includes several mathematical assumptions and dependencies on definitions that are not fully resolved, particularly regarding the recurrence relations and the implications of the closed-form equations.

RamaWolf
Messages
95
Reaction score
2
This thread is concerned with rectangular triangle with one side ( = s) and hypothenuse
(t = 2 s + 1) given and we are looking for the remaining side (all sides having integer values)

d^{2} = t^{2} - s^{2} = (2 s + 1)^{2} - s^{2}, with d, s, t \in \mathbb{Z}

Computational experiments show the first solutions to this problem as:

s = 0 | 8 | 120 | 1680 | 23408 | ...
t = 1 | 17 | 241 | 3361 | 46817 | ...
d = 1 | 15 | 209 | 2911 | 40545 | ...

Further mathematical treatment starts with:

Lemma: Let b_{0} and b_{1} be co-prime natural numbers and

b_{k}:=4 b_{k-1} - b_{k-2}

then the pairs (b_{k},b_{k+1}) are all co-prime

Euclidean Rule for Pythagorean Numbers:
Let (m,n) be co-prime natural numbers (m<n), then

h := n^{2} + m^{2}
e := 2 m n
d := n^{2} - m^{2}

form the hypothenuse, the even and the odd leg
of a primitive Pythagorean triangle (PPT)


Now we have from b = {0, 1, 4, 15, 56, 209, 241, ...}

(m.n) -h- -e- -d-
---------------------------------
(0,1) -1- -0- -1-
(1,4) -17- -8- -15-
(4,15) -241- -120- -209-
(15,56) -3361- -1680- -2911-
(56,209) -46827- -23408- -40545-
(...,...)

and we identify the PPT's generated from the b-sequence as solutions to our problem.
 
Physics news on Phys.org
Further analysis in this topic will be much easier
with the following closed form equation for b_{k}


b_{k} := \frac{(2+\sqrt{3})^{k} - (2-\sqrt{3})^{k}}{2 \sqrt{3}}
 
With the equation for b_{k} in closed form as above and the definitions
for then even resp odd leg and the hypothenuse of the Euclidean PTT rule,
we have:

d_{k} := \frac{1}{6} ((3+2 \sqrt{3}) (2+\sqrt{3})^{2 k} + (3-2 \sqrt{3}) (2-\sqrt{3})^{2 k})

e_{k}:=\frac{1}{6} ((2+\sqrt{3})^{(1+2 k)}+(2-\sqrt{3})^{(1+2 k)} - 4)

h_{k} := \frac{1}{3} ((2+\sqrt{3})^{(1+2 k)}+(2-\sqrt{3})^{(1+2 k)} - 1)

and from the last two equations, it is easy to see, that

h_{k} = 2 e_{k} + 1
 
Let b_{0}=0, b_{1}=1 and b_{k}:=4 b_{k-1} - b_{k-2} as above,
we have for the odd leg of aa PTT after the Euclidean rule for PTT's

d_{k}= b_{k+1}^{2} - b_{k}^{2}

Numerical inspection of the so defined sequences show:

b = {0,1,4,15,56,209,780,2911,10864,40545,...} and

d = {15,209,2911,40545, ...}

the highly remarkable fact d_{k}= b_{2k+1}
 
Related to our problem is:

Pythagorean Triangles with one side equal s and hypothenuse equal 2 s-1

Computational experiments of the first solutions (given are the even leg e, the odd leg d
and the hypothenuse h, with the corresponding (m,n) from the Êuclidean Rule for PPT):

i - (m.n) - d / e / h
-------------------
1 - (1,2) - 3 / 4 / 5
2 - (4,7) - 33 / 56 / 65
3 - (15,26) - 451 / 780 / 901
4 - (56,97) - 6273 / 10864 / 12545
5 - (209,362) - 87363 / 151316 / 174725

We see that the m_{k} and the n_{k} form the recurrence relation:

m_{k} = 4 m_{k-1} - m_{k-2} and

n_{k} = 4 n_{k-1} - n_{k-2}

with different starting values.

That gives hope for an interesting investigation in the problem:

Pythagorean Triangles with one side equal s and hypothenuse equal 2 s+k, k\in \mathbb{Z}
 
related paper:

http://conservancy.umn.edu/bitstream/4878/1/438.pdf

and some of my ideas:

http://dl.dropbox.com/u/13155084/2D/Fourier.html

http://dl.dropbox.com/u/13155084/Pythagorean%20lattice.pdf
 
Last edited by a moderator:
RamaWolf said:
Related to our problem is:

Pythagorean Triangles with one side equal s and hypothenuse equal 2 s-1

Computational experiments of the first solutions (given are the even leg e, the odd leg d
and the hypothenuse h, with the corresponding (m,n) from the Êuclidean Rule for PPT):

i - (m.n) - d / e / h
-------------------
1 - (1,2) - 3 / 4 / 5
2 - (4,7) - 33 / 56 / 65
3 - (15,26) - 451 / 780 / 901
4 - (56,97) - 6273 / 10864 / 12545
5 - (209,362) - 87363 / 151316 / 174725

We see that the m_{k} and the n_{k} form the recurrence relation:

m_{k} = 4 m_{k-1} - m_{k-2} and

n_{k} = 4 n_{k-1} - n_{k-2}

with different starting values.

That gives hope for an interesting investigation in the problem:

Pythagorean Triangles with one side equal s and hypothenuse equal 2 s+k, k\in \mathbb{Z}
Let k = 3a^2-b^2 then the series for m begins {a,2a+b,7a+4b,...} and the series for n begins {b,3a+2b,12a+7b,...}. This does not preclude other values of m and n from also solving the relationship one side = s and the hypothenuse equals 2s + k though. Example, m^2+n^2 - 2(n^2-m^2) = 3m^2-n^2 = 3*(2a+b)^2 - (3a+2b)^2 = 3*(7a+4b)^2 - (12a-7b)^2. As one can see, the relation m_n = 4 m_(n-1) - m_(n-2) holds for this pattern. Since -13 = 3*1^2-4^2 = 3*2^2 -5^2 one can see how different sequences may hold for the same value of k. Still working on other relationships e.g. for the twice the even side + k = the hypothenuse.
 
ramsey2879 said:
Let k = 3a^2-b^2 then the series for m begins {a,2a+b,7a+4b,...} and the series for n begins {b,3a+2b,12a+7b,...}. This does not preclude other values of m and n from also solving the relationship one side = s and the hypothenuse equals 2s + k though. Example, m^2+n^2 - 2(n^2-m^2) = 3m^2-n^2 = 3*(2a+b)^2 - (3a+2b)^2 = 3*(7a+4b)^2 - (12a-7b)^2. As one can see, the relation m_n = 4 m_(n-1) - m_(n-2) holds for this pattern. Since -13 = 3*1^2-4^2 = 3*2^2 -5^2 one can see how different sequences may hold for the same value of k. Still working on other relationships e.g. for the twice the even side + k = the hypothenuse.

For the hypothenuse - twice the even side we have a^2 + b^2 -4ab = b^2 + (4b-a)^2 - 4b*(4b-a). In other words m_0 = a, m_1 = b m_2 = 4b-a and n_0 = b, n_1 = 4b-a, n_2 = 15b-4a. Both have the recurrence relation S(n) = 4*S(n-1) - S(n-2)

For the even side -the odd side, 4ab - b^2 + a^a = 4*(4b+a)*(17b+4a)-(17b+4a)^2 + (4b+a)^2. In other words, m_0 = a, m_1 = a+4b, m_2 = 17a + 72b and n_0 = b, n_1 = 17b + 4a, n_2 = 305b + 72a. Both have the recurrence relation S_n = 18*S(n-1)-S(n-2) .
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 15 ·
Replies
15
Views
3K
Replies
23
Views
2K