From charlesreid1

m (Replacing charlesreid1.com:3000 with git.charlesreid1.com)
 
(2 intermediate revisions by the same user not shown)
Line 7: Line 7:
==Also See==
==Also See==


Blog post: Computing square roots using continued fractions: https://charlesreid1.com:3000/cs/euler/src/master/scratch/Round2_050-070/063/Problem063.java
Blog post: Computing square roots using continued fractions: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/063/Problem063.java


Problem 57 (also deals with continued fractions): [[Project Euler/57]]
Problem 57 (also deals with continued fractions): [[Project Euler/57]]
Line 13: Line 13:
Problem 64: [[Project Euler/64]]
Problem 64: [[Project Euler/64]]


==Solution Technique==
==Code==


==Code==
Link: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/065
 
Convergents class: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/065/Convergents.java


Link: https://charlesreid1.com:3000/cs/euler/src/master/scratch/Round2_050-070/065
Problem 65 driver: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/065/Problem065.java


==Flags==
==Flags==


{{ProjectEulerFlag}}
{{ProjectEulerFlag}}

Latest revision as of 03:49, 9 October 2019

Problem Statement

Another continued fractions problem, this time asking about convergents P and Q of the natural base e.

Link: https://projecteuler.net/problem=65

Also See

Blog post: Computing square roots using continued fractions: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/063/Problem063.java

Problem 57 (also deals with continued fractions): Project Euler/57

Problem 64: Project Euler/64

Code

Link: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/065

Convergents class: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/065/Convergents.java

Problem 65 driver: https://git.charlesreid1.com/cs/euler/src/master/scratch/Round2_050-070/065/Problem065.java

Flags