fruit: Image-Based Systems of Linear Equations (Numeric)

Exercise template for solving a system of three linear equations (numeric answer) with a problem description based on shuffled images.

Name:
fruit
Type:
Related:
Preview:

Given the following information:

banana \(+\) pineapple \(+\) pineapple = \(909\)
banana \(+\) pineapple \(+\) banana = \(516\)
pineapple \(+\) orange \(+\) pineapple = \(921\)

Compute:

banana \(+\) orange \(+\) pineapple = \(\text{?}\)

The information provided can be interpreted as the price for three fruit baskets with different combinations of the three fruits. This corresponds to a system of linear equations where the price of the three fruits is the vector of unknowns \(x\):

\(x_1 =\) banana \(x_2 =\) orange \(x_3 =\) pineapple

The system of linear equations is then: \[ \begin{aligned} \left( \begin{array}{rrr} 1 & 0 & 2 \\ 2 & 0 & 1 \\ 0 & 1 & 2 \end{array} \right) \cdot \left( \begin{array}{r} x_1 \\ x_2 \\ x_3 \end{array} \right) & = & \left( \begin{array}{r} 909 \\ 516 \\ 921 \end{array} \right) \end{aligned} \] This can be solved using any solution algorithm, e.g., elimination: \[ x_1 = 41, \, x_2 = 53, \, x_3 = 434. \] Based on the three prices for the different fruits it is straightforward to compute the total price of the fourth fruit basket via:

banana \(+\) orange \(+\) pineapple =
\(x_1\) \(+\) \(x_2\) \(+\) \(x_3\) =
\(41\) \(+\) \(53\) \(+\) \(434\) = \(528\)

Given the following information:

pineapple \(+\) pineapple \(+\) orange = \(549\)
orange \(+\) orange \(+\) banana = \(140\)
pineapple \(+\) pineapple \(+\) banana = \(620\)

Compute:

banana \(+\) orange \(+\) pineapple = \(\text{?}\)

The information provided can be interpreted as the price for three fruit baskets with different combinations of the three fruits. This corresponds to a system of linear equations where the price of the three fruits is the vector of unknowns \(x\):

\(x_1 =\) banana \(x_2 =\) orange \(x_3 =\) pineapple

The system of linear equations is then: \[ \begin{aligned} \left( \begin{array}{rrr} 0 & 1 & 2 \\ 1 & 2 & 0 \\ 1 & 0 & 2 \end{array} \right) \cdot \left( \begin{array}{r} x_1 \\ x_2 \\ x_3 \end{array} \right) & = & \left( \begin{array}{r} 549 \\ 140 \\ 620 \end{array} \right) \end{aligned} \] This can be solved using any solution algorithm, e.g., elimination: \[ x_1 = 94, \, x_2 = 23, \, x_3 = 263. \] Based on the three prices for the different fruits it is straightforward to compute the total price of the fourth fruit basket via:

banana \(+\) orange \(+\) pineapple =
\(x_1\) \(+\) \(x_2\) \(+\) \(x_3\) =
\(94\) \(+\) \(23\) \(+\) \(263\) = \(380\)

Given the following information:

pineapple \(+\) banana \(+\) pineapple = \(780\)
banana \(+\) banana \(+\) orange = \(133\)
orange \(+\) orange \(+\) banana = \(188\)

Compute:

banana \(+\) orange \(+\) pineapple = \(\text{?}\)

The information provided can be interpreted as the price for three fruit baskets with different combinations of the three fruits. This corresponds to a system of linear equations where the price of the three fruits is the vector of unknowns \(x\):

\(x_1 =\) banana \(x_2 =\) orange \(x_3 =\) pineapple

The system of linear equations is then: \[ \begin{aligned} \left( \begin{array}{rrr} 1 & 0 & 2 \\ 2 & 1 & 0 \\ 1 & 2 & 0 \end{array} \right) \cdot \left( \begin{array}{r} x_1 \\ x_2 \\ x_3 \end{array} \right) & = & \left( \begin{array}{r} 780 \\ 133 \\ 188 \end{array} \right) \end{aligned} \] This can be solved using any solution algorithm, e.g., elimination: \[ x_1 = 26, \, x_2 = 81, \, x_3 = 377. \] Based on the three prices for the different fruits it is straightforward to compute the total price of the fourth fruit basket via:

banana \(+\) orange \(+\) pineapple =
\(x_1\) \(+\) \(x_2\) \(+\) \(x_3\) =
\(26\) \(+\) \(81\) \(+\) \(377\) = \(484\)
Description:
A system of three linear equations has to be solved and the solution has to be entered into a fourth equation. However, the system is not defined through a verbal description or mathermatical notation but through images (clip art of tropical fruits). The problem can be interpreted as prices of three fruits (banana, orange, pineapple) and corresponding fruit baskets with different combinations of fruits. Images are stored in Base64 encoding within the exercise files and embedded dynamically into the output. PDFs are best generated from the Rnw version, HTML is best generated with pandoc from either the Rmd version (where pandoc is used by default) or the Rnw version (where ttm is used by default, but pandoc can be easily used as well.)
Solution feedback:
Yes
Randomization:
Random numbers, shuffled graphics
Mathematical notation:
Yes
Verbatim R input/output:
No
Images:
Yes
Other supplements:
No
Template:
Raw: (1 random version)
PDF:
fruit-Rmd-pdf
fruit-Rnw-pdf
HTML:
fruit-Rmd-html
fruit-Rnw-html

(Note that the HTML output contains mathematical equations in MathML, rendered by MathJax using ‘mathjax = TRUE’. Instead it is also possible to use ‘converter = “pandoc-mathjax”’ so that LaTeX equations are rendered by MathJax directly.)

Demo code:

library("exams")

set.seed(403)
exams2html("fruit.Rmd", mathjax = TRUE)
set.seed(403)
exams2pdf("fruit.Rmd")

set.seed(403)
exams2html("fruit.Rnw", mathjax = TRUE)
set.seed(403)
exams2pdf("fruit.Rnw")