Question: Please solve only part B Problem 2 [10pt] Implement the following three functions in hw3.rkt and submit your code to hw3-code Gradescope assignment. You may
![Please solve only part B Problem 2 [10pt] Implement the following](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f4e210ec9c0_68866f4e21062a1d.jpg)

Please solve only part B
Problem 2 [10pt] Implement the following three functions in hw3.rkt and submit your code to hw3-code Gradescope assignment. You may NOT use any of Scheme's imperative features (assignment/loops) or anything else not covered in class. You should use Racket (https://racket-lang.org) for your implementation. For all problems, you can assume all inputs obey the types as specified in a problem. a) (4pts) Define a function funpower in Racket. funpower takes in two arguments f (a function) and n (a non-negative integer), and returns a new function that applies f n times. For example (funpower sqrt 2) is a function that applies sqrt to input two times. ((funpower sqrt 2) 16) should evaluate to 2. b) (4pts) Define a function encode in Racket. encode takes in a non-negative integer number n, and returns a function which takes in another function f as argument and returns a function that is equivalent to fr (applying f to input n times). For example (((encode 2) sqrt) 16) should evaluate to 2. When n is 0, f" should be the identity function id(x) = x. (define (encode n) (lambda (f) f)) (((encode 2) sqrt) 16) ; should evaluate to 2 Problem 2 [10pt] Implement the following three functions in hw3.rkt and submit your code to hw3-code Gradescope assignment. You may NOT use any of Scheme's imperative features (assignment/loops) or anything else not covered in class. You should use Racket (https://racket-lang.org) for your implementation. For all problems, you can assume all inputs obey the types as specified in a problem. a) (4pts) Define a function funpower in Racket. funpower takes in two arguments f (a function) and n (a non-negative integer), and returns a new function that applies f n times. For example (funpower sqrt 2) is a function that applies sqrt to input two times. ((funpower sqrt 2) 16) should evaluate to 2. b) (4pts) Define a function encode in Racket. encode takes in a non-negative integer number n, and returns a function which takes in another function f as argument and returns a function that is equivalent to fr (applying f to input n times). For example (((encode 2) sqrt) 16) should evaluate to 2. When n is 0, f" should be the identity function id(x) = x. (define (encode n) (lambda (f) f)) (((encode 2) sqrt) 16) ; should evaluate to 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
