Homework Assignment 1 Solution

$30.00 $24.00

By electronically submitting this assignment to eCampus by logging in to your account, you are signing electronically on the following Aggie Honor Code: \On my honor, as an Aggie, I have neither given nor received any unauthorized aid on any portion of the academic work included in this assignment.” In this assignment, you will practice…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

By electronically submitting this assignment to eCampus by logging in to your account, you are signing electronically on the following Aggie Honor Code:

\On my honor, as an Aggie, I have neither given nor received any unauthorized aid on any portion of the academic work included in this assignment.”

In this assignment, you will practice the basics of functional programming in Haskell. You will earn total 100 points. Here are some general instructions.

    1. Read the problem descriptions and requirements carefully! There may be signi cant penalties for not ful lling the requirements.

    1. Some problems ask you to explain the working of your function with the given input. Your explanation must be consistent with your de nition of the function. Your work will be graded not only on the correctness of your answer, but also on the consistency and clarity with which you express it.

    1. This homework set is an individual homework, not a team-based e ort. Discussion of the concept is encouraged, but actual write-up of the solutions must be done indi-vidually and your nal product { the code as well as the comments and explanations { should never be shared.

    1. Submit electronically exactly one le named YourLastName-YourFirstName-hw1.hs, and nothing else, on eCampus.tamu.edu.

    1. Make sure that the Haskell script (the .hs le) you submit compiles without any error when compiled using the Glasgow Haskell Compilation System (ghc or ghci) version 7 and above1.

If your program does not compile, you will receive very few points (more likely zero) for this assignment. To avoid receiving zero for the entire assignment, if you cannot complete de ning a function correctly without compile error, you can set the function de nition undefined, see the skeleton code provided.

    1. Remember to put the head comment in your le, including your name, UIN, and acknowledgements of any help received in doing this assignment. Again, remember the Honor Code!

1Version 7 is installed in the departmental servers (linux.cse.tamu.edu and compute.cse.tamu.edu), and version 8 is what you will get if you install the Haskell system in your computer.

1

Below, the exercise problems are from the Haskell Textbook: \Programming in Haskell, 2nd Ed.” by Graham Hutton. Some problems are modi ed (with additional requirements) by the instructor. Please read textbook Chapters 1 thru 6 and the problem statements carefully. Keep the name and type of each function exactly the same as given in the problem statement and the skeleton code.

Problem 1. (5 points) Put your full name, UIN, and acknowledgements of any help received in the head comment in your .hs le.

Problem 2. (10 points) The n-th Lucas number ‘n is recursively de ned as follows: ‘0 = 2 and ‘1 = 1 and ‘n = ‘n 1 +‘n 2 for n 2. Write a recursive function lucas that computes the n-th Lucas number.

lucas :: Int -> Int

Problem 3. (5 + 10 = 15 points) Chapter 1, Exercise 4 (modi ed).

Study the de nition of the function qsort given in the text carefully, and try it out with an integer list, for example, [3,2,3,1,4]. You will notice that it sorts a list of elements in an ascending order.

3.1 (5 points) Write a recursive function qsort1 that sorts a list of elements in a descending order.

qsort1 :: Ord a => [a] -> [a]

3.2 (10 points) Write your answer for this question in a block comment following the de ni-tion of function qsort1. Suppose that qsort1 is invoked with the input [3,2,3,1,4]. How many times is qsort1 called recursively (i.e., without counting the rst invoca-tion of qsort1 [3,2,3,1,4])? Explain step-by-step, in particular, at each level of recursive call, what are the values of x, smaller, and larger? [Hint: Think using a binary tree structure.]

Problem 4. (10 + 10 = 20 points) Chapter 5, Exercise 9 (modi ed).

The scalar product function should be able to take not only two lists of the same length n but also those of di erent lengths.

4.1 (10 points) Using the list comprehension with the zip prelude function, write the scalar product function.

scalarproduct :: [Int] -> [Int] -> Int

4.2 (10 points) Explain carefully step-by-step the working of your scalarproduct function when it is invoked as follows.

*Main> scalarproduct [1,2,3] [4..]

Problem 5. (10 points) Chapter 6, Exercise 7.

Like in the previous problem, the merge function should be able to take two sorted lists of di erent lengths as well as those of the same length.

merge :: Ord a => [a] -> [a] -> [a]

2

Problem 6. (8 + 7 = 15 points) Chapter 6, Exercise 8.

De ning function halve is required (hint: use splitAt prelude function).

(8 points) msort :: Ord a => [a] -> [a]

(7 points) halve :: [a] -> ([a], [a])

Problem 7. (10 points) Write a recursive function isElem that returns True if a given value is an element of a list or False otherwise.

isElem :: Eq a => a -> [a] -> Bool

Sets are the most fundamental discrete structure on which all other discrete structures are built. In the following problem (and continuing in the next homework set), we are going to implement mathematical sets and their operations using Haskell lists.

A set is an unordered collection of elements (objects) without duplicates, whereas a list is an ordered collection of elements in which multiplicity of the same element is allowed. We de ne Set as a type synonym for lists as follows:

type Set a = [a]

Even though the two types { Set a and [a] { are the same to the Haskell compiler, they communicate to the programmer that values of the former are sets and those of the latter are lists.

Problem 8. (15 points) Write a recursive function that constructs a set from a list. Constructing a set from a list simply means removing all duplicate values. Use isElem from the previous problem in the de nition of toSet.

toSet :: Eq a => [a] -> Set a

Skeleton code and modes of running your code: The le hw1-skeleton.hs con-tains \stubs” for all the functions you are going to implement and placeholders for your explanations. The Haskell function bodies are initially undefined, a special Haskell value that has all possible types (thus, the skeleton le at least compiles).

In the skeleton le you nd a test suite that test-evaluates the functions. Initially, all tests fail, until you provide correct implementation for the Haskell function. The tests are written using the HUnit library. Feel free to add more tests to the test suite.

The skeleton code can be loaded to the interpreter (> ghci hw1-skeleton.hs). In the in-terpreter mode, you can test individual functions one at a time while you are implementing them. Evaluating the function main (by > main in the interpreter mode) runs all of the tests in the test suite.

Alternatively, you can compile the code and execute it in the terminal mode:

  • ghc hw1-skeleton.hs and then

  • ./hw1-skeleton

which has the same e ect as when you do > main in the interpreter mode.

Have fun!

3

Homework Assignment 1 Solution
$30.00 $24.00