fruit2: Image-Based Systems of Linear Equations (Single-Choice)
fruit2
Given the following information:
\(+\) | \(+\) | = | \(909\) | |||
\(+\) | \(+\) | = | \(516\) | |||
\(+\) | \(+\) | = | \(921\) |
Compute:
\(+\) | \(+\) | = | \(\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 =\) | \(x_2 =\) | \(x_3 =\) |
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:
\(+\) | \(+\) | = | ||||
\(x_1\) | \(+\) | \(x_2\) | \(+\) | \(x_3\) | = | |
\(41\) | \(+\) | \(53\) | \(+\) | \(434\) | = | \(528\) |
- False
- False
- False
- False
- True
Given the following information:
\(+\) | \(+\) | = | \(541\) | |||
\(+\) | \(+\) | = | \(232\) | |||
\(+\) | \(+\) | = | \(221\) |
Compute:
\(+\) | \(+\) | = | \(\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 =\) | \(x_2 =\) | \(x_3 =\) |
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} 541 \\ 232 \\ 221 \end{array} \right) \end{aligned} \] This can be solved using any solution algorithm, e.g., elimination: \[ x_1 = 81, \, x_2 = 70, \, x_3 = 230. \] Based on the three prices for the different fruits it is straightforward to compute the total price of the fourth fruit basket via:
\(+\) | \(+\) | = | ||||
\(x_1\) | \(+\) | \(x_2\) | \(+\) | \(x_3\) | = | |
\(81\) | \(+\) | \(70\) | \(+\) | \(230\) | = | \(381\) |
- False
- True
- False
- False
- False
Given the following information:
\(+\) | \(+\) | = | \(164\) | |||
\(+\) | \(+\) | = | \(202\) | |||
\(+\) | \(+\) | = | \(1076\) |
Compute:
\(+\) | \(+\) | = | \(\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 =\) | \(x_2 =\) | \(x_3 =\) |
The system of linear equations is then: \[ \begin{aligned} \left( \begin{array}{rrr} 1 & 2 & 0 \\ 2 & 1 & 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} 164 \\ 202 \\ 1076 \end{array} \right) \end{aligned} \] This can be solved using any solution algorithm, e.g., elimination: \[ x_1 = 80, \, x_2 = 42, \, x_3 = 498. \] Based on the three prices for the different fruits it is straightforward to compute the total price of the fourth fruit basket via:
\(+\) | \(+\) | = | ||||
\(x_1\) | \(+\) | \(x_2\) | \(+\) | \(x_3\) | = | |
\(80\) | \(+\) | \(42\) | \(+\) | \(498\) | = | \(620\) |
- False
- True
- False
- False
- False
(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("fruit2.Rmd", mathjax = TRUE)
set.seed(403)
exams2pdf("fruit2.Rmd")
set.seed(403)
exams2html("fruit2.Rnw", mathjax = TRUE)
set.seed(403)
exams2pdf("fruit2.Rnw")