CSCI 35500 SP 2026

Go to homepage

Last updated: 2026-02-09

Homeworks

Homework instructions/advice:


HW 1 (due date TBD)

Linear algebra review

Problem 1

Define A and b as follows: A = \begin{bmatrix} 3 & 7 & 6 \\ 4 & 1 & 4 \\ 3 & 8 & 7 \end{bmatrix}, b = \begin{bmatrix} 2 \\ 4 \\ 6 \end{bmatrix}

Solve the matrix-vector equation Ax = b using row-reduction. You should get integer results.

Problem 2

Define A as follows: A = \begin{bmatrix} 1 & 4 & 1 \\ 7 & 5 & 7 \\ 8 & 4 & 8 \end{bmatrix}

Show that A is not invertible, and give a nontrivial solution to Ax = 0.

Problem 3

Define A as follows: A = \begin{bmatrix} 1 & 4 \\ 7 & 5 \end{bmatrix}

Find AA^\intercal.

Problem 4

Give a counterexample that shows matrix multiplication is not commutative for 2\times 2 matrices.

Problem 5

Show that I_2A = A for all matrices A with dimension 2\times 2.

Linear programming basics

Problem 7

A small bakery makes two types of muffins: blueberry and chocolate chip. Each blueberry muffin requires 0.5 cups of flour and 0.25 cups of sugar. Each chocolate chip muffin requires 0.5 cups of flour and 0.5 cups of sugar. The bakery has 20 cups of flour and 15 cups of sugar available each day. The profit from each blueberry muffin is $2, and the profit from each chocolate chip muffin is $3. The bakery wants to maximize its daily profit.

You will create and solve a linear program that models the above scenario:

Problem 8

Note: this problem is a little more complex than the above problem, but is still possible to model using 3 decision variables (for the obvious quantities).

A furniture company produces three types of chairs: basic, deluxe, and executive. The production of each chair requires different amounts of wood, labor, and fabric. The company wants to maximize its profit given its limited daily resources.

The company’s goal is to maximize profit. The profit for each chair type, along with its material cost, is as follows:

The company has these additional constraints:

You will create (but not solve) a linear program that models the above problem:

Linear programming geometry

Problem 9

Give an example for each of the following types of linear programs:

Problem 10

In class, we saw that the intersection of convex sets was convex. Is the union of convex sets convex? If so, explain. If not, provide a counterexample.

More problems will be added…