Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Language: R5RS Racket Create a procedure (list->stream lis) that makes a stream from a given list. Create a procedure (stream->list strm n) that makes a
Language: R5RS Racket
- Create a procedure (list->stream lis) that makes a stream from a given list.
- Create a procedure (stream->list strm n) that makes a list from the first n items of the given stream.
- Create a stream called factorials that refers to the infinite stream of consecutive factorial values starting from 0! E.g. (stream-> list factorials 10) (1 1 2 6 24 120 720 5040 40320 362880)
- A pseudo-random number generator (prng) can be defined using the following equation:
- Xn+1 = (a*Xn + c) mod m
where m is the "modulus" (0
(stream->list (prng 3) 5) (0.01585 0.4954 0.9988 0.7253 0.0307)
Use the following values for the prng constants: m = 232 a = 22695477 c = 1.0 Note: the equation above returns numbers in the range [0,m-1], you should ensure that your stream emits only numbers in the range [0,1)
- Create a procedure (random-int r min max) that takes a stream of random numbers r in the range [0,1) and returns a stream of random integers in the range [min,max).
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