Kharakov,
Good. The next step is to find solutions for (that result) = cos(5*(π/5)) = cos(π) = -1.
Here's a hint. cos(π) = cos(3π) = cos(5π) = cos(7π) = cos(9π) = -1. Consider what the args become when divided by 5, since we want to find cos(a) from cos(5a).
If you set y = 0, you get ζ(1), which is infinite.Given the following Taylor series for log (I refer to natural log, or ln, as log).
\(\log{(\frac{x}{y})} = \log{(x)}-\log{(y)} = \sum_{n=1}^\infty \, {(\frac {x-y}{x})}^n \,\, \times \, n^{-1}\)
What is the relationship of this sum to the Zeta function?
That's infinity - infinity, and that's dependent on how you take the limit to infinity for each operand.What do you get when you subtract \(\zeta{(1)}-1\) from \(\lim_{x \to \infty} \, \log{(x)}\)?
No idea. I'd need a hint as to where to look.Further: If the series is convergent for \( \infty> x > y >0 \) and \(0 < x < y <= x +1 < \infty \), what other function is the sum related to?
True. Try it with positive integer values for x and y, x>y:If you set y = 0, you get ζ(1), which is infinite.
Yeah, but there is a constant that emerges when you do that. Wolfram alpha won't let me do the actual thing, but I can do (sum of (zeta(k)/k - 1/k) k=2 to 1500), and then subtract that from 1 to get the... Euler Mascheroni constant.That's infinity - infinity, and that's dependent on how you take the limit to infinity for each operand.What do you get when you subtract \(\zeta{(1)}-1\) from \(\lim_{x \to \infty} \, \log{(x)}\)?
There's a much better way to find what the zeta function is for an argument near 1. Consider an alternating-sign version:
No idea. I'd need a hint as to where to look.Further: If the series is convergent for \( \infty> x > y >0 \) and \(0 < x < y <= x +1 < \infty \), what other function is the sum related to?
Nice. But look at where the cutoff lies for your partial zeta function. I made that mistake the other day. Hahah... Nevermind. I read the same mistake I made into your partial zeta function.. hhahahaha!!There is a much better way to state that result. Define a partial zeta function:
\( \zeta(s,n) = \sum_{m=1}^{n} \frac{1}{m^s} \)
Then one can show that
\( \log n = \sum_{k=1}^{\infty} \frac{\zeta(k,n) - 1}{k} \)
repeat
r = remainder(a,b)
if r == 0 then
-- The output value
gcd = b
break
end if
-- push the values back
a = b
b = r
end repeat
I had looked at the polygon question afew months back. I needed the dimensions of a hex nut. They are readily available in tables. I wondered what the relationship between faces and diameter was.
Given the diameter of the circle withan inscribed hexagon what is the length of each face?
My solution was a regular polygon inscribed in a circle makes 2PI/N angles and N equal chords. The half angle of the angle made by each chord forms a right triangle with ahypotenuse of diameter/2 or radius. The base of the triangle is chord/2.
I had looked at the polygon question afew months back. I needed the dimensions of a hex nut. They are readily available in tables. I wondered what the relationship between faces and diameter was.
Given the diameter of the circle withan inscribed hexagon what is the length of each face?
My solution was a regular polygon inscribed in a circle makes 2PI/N angles and N equal chords. The half angle of the angle made by each chord forms a right triangle with ahypotenuse of diameter/2 or radius. The base of the triangle is chord/2.
I think you're making it more complex than you need to:
6 equilateral triangles make up a regular hexagon. Two of the sides are obviously the radius of the circle. As they are equilateral the third side (the face) is the same.
I had looked at the polygon question afew months back. I needed the dimensions of a hex nut. They are readily available in tables. I wondered what the relationship between faces and diameter was.
Given the diameter of the circle withan inscribed hexagon what is the length of each face?
My solution was a regular polygon inscribed in a circle makes 2PI/N angles and N equal chords. The half angle of the angle made by each chord forms a right triangle with ahypotenuse of diameter/2 or radius. The base of the triangle is chord/2.
I think you're making it more complex than you need to:
6 equilateral triangles make up a regular hexagon. Two of the sides are obviously the radius of the circle. As they are equilateral the third side (the face) is the same.