Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please use Ocaml (* Write an infinite precision version of the pel function from before pell2 0 = [] pell2 1 = [1] pell2 7
Please use Ocaml
(*
Write an infinite precision version of the pel function from before
pell2 0 = []
pell2 1 = [1]
pell2 7 = [9; 6; 1]
pell2 50 = [2; 2; 5; 3; 5; 1; 4; 2; 9; 2; 4; 6; 2; 5; 7; 6; 6; 8; 4]
Hint: You may want to use the sum function from above again inside
pell2.
*)
let rec pell2 (i: int) : int list = failwith "unimplemented"
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started