Here are 3 problems about Racket Programming Language:Question #1:Define and test a procedure memv that takes an element and a list and returns the first cdr whose car is eqv? to the element, or #f if the element is absent from the list.> (memv ‘a ‘(a b c))'(a b c)> (memv ‘b ‘(a ? c))#f> (memv ‘b ‘(a b c b))'(b c b)Question #2:The cartesian-product is defined over a list of sets (again simply lists that by our agreed upon convention don’t have duplicates). The result is a list of tuples (i.e. lists). Each tuple has in the first position an element of the first set, in the second position an element of the second set, etc. The output list should contains all such combinations. The exact order of your tuples may differ; this is acceptable.> (cartesian-product ‘((5 4) (3 2 1)))((5 3) (5 2) (5 1) (4 3) (4 2) (4 1))Question #3:The procedure powerset takes a list and returns the power set of the elements in the list. The exact order of your lists may differ; this is acceptable.> (powerset ‘(3 2 1))'((3 2 1) (3 2) (3 1) (3) (2 1) (2) (1) ())> (powerset ‘())'(( ))#lang racket(define (product l1 l2)(foldl append ‘()(map (? (l3)(map (? (x) (cons l3 x)) l2))l1)))(define (cartesian-product list)(product (car list) (car(cdr list))))
Racket Programming Language
Get your custom paper done at low prices
275 words/page
Double spacing
Free formatting (APA, MLA, Chicago, Harvard and others)
12 point Arial/Times New Roman font
Free title page
Free bibliography & reference
TESTIMONIALS
What Students Are Saying
Outstanding service, thank you very much.
Awesome. Will definitely use the service again.