a) Let the columns of the matrix M represent the percentage of sweets- fruit jellies, chocolate and chews in the mixes and the rows represent the mixes- Fruit mix, chocolate mix and lasting mix.
"M=\\begin{bmatrix}\n 50\\% & 25\\% & 25\\% \\\\\n 30\\% & 45\\% & 25\\% \\\\\n 40\\% & 25\\% & 35\\%\n\\end{bmatrix}"
Converting percentages to decimal values:
"M= \\begin{bmatrix} 0.5 & 0.25 & 0.25 \\\\ 0.3 & 0.45 & 0.25 \\\\ 0.4 & 0.25 & 0.35 \\end{bmatrix}"
b)
to find matrix C :
Since C represents the cost per kilogram of the three types of sweets- fruit jellies, chocolate and chews in the mixes
"C = \\begin{bmatrix} 6 \\\\ 10 \\\\ 5 \\end{bmatrix}"
"MC = \\begin{bmatrix} 0.5 & 0.25 & 0.25 \\\\ 0.3 & 0.45 & 0.25 \\\\ 0.4 & 0.25 & 0.35 \\end{bmatrix} \n\\begin{bmatrix} 6\\\\ 10 \\\\ 5 \\end{bmatrix}"
"= \\begin{bmatrix} 6\u00d70.5+.25\u00d710 + .25\u00d75 \\\\ \n6\u00d70.3+.45\u00d710 + .25\u00d75 \\\\6\u00d70.4+.25\u00d710 + .35\u00d75 \\end{bmatrix}"
"\\begin{bmatrix} 6.75 \\\\ 7.55 \\\\ 6.65 \\end{bmatrix}"
"=\\begin{bmatrix} F \\\\ C \\\\ L \\end{bmatrix}"
F = 6.75 , C= 7.55 , L= 6.65
Comments
Leave a comment