Question
How to write a bird population word problem as a matrix
Original question: 4. Chattery Island is home to 1080 birds of 3 different species (the yellow-bellied sapsucker, the blue-headed nutcracker and the purple-footed honeyguzzler). There are twice as many nutcrackers as honeyguzzlers, and 120 more sapsuckers than nutcrackers. Set up a linear system to describe this situation and write it in augmented matrix form.
Expert Verified Solution
Key concept: This is a clean translation problem: three groups, three conditions, one system. The trick is to name the variables in a way that makes the relationships easy to read.
Step by step
Let
- = number of sapsuckers
- = number of nutcrackers
- = number of honeyguzzlers
We are told:
- There are 1080 birds total:
- There are twice as many nutcrackers as honeyguzzlers: which we can rewrite as
- There are 120 more sapsuckers than nutcrackers: which becomes
System in standard form
s+n+h=1080\\ s-n=120\\ n-2h=0 \end{cases}$$ ### Augmented matrix form Using variable order $s,n,h$: $$\begin{bmatrix} 1 & 1 & 1 & | & 1080\\ 1 & -1 & 0 & | & 120\\ 0 & 1 & -2 & | & 0 \end{bmatrix}$$ ### Pitfall alert A frequent mistake is writing the second relationship as $h=2n$ instead of $n=2h$. Read the phrase carefully: ‘twice as many nutcrackers as honeyguzzlers’ means nutcrackers are the larger group. Also keep the variable order consistent across every row of the matrix. ### Try different conditions If the problem asked for the actual number of each bird, you could continue by row-reducing the matrix or using substitution. With the current wording, though, only the system and augmented matrix are required. If a different species relationship were given, the matrix coefficients would change but the setup method would stay the same. ### Further reading augmented matrix, system of equations, word problemFAQ
How do you write the bird problem as equations?
Let s, n, and h represent the three bird species. Then use s + n + h = 1080, n - 2h = 0, and s - n = 120.
What is the augmented matrix for this system?
With variable order s, n, h, the augmented matrix is [ [1,1,1|1080], [1,-1,0|120], [0,1,-2|0] ].