Problem Overview:
The task involves determining the coat color of rabbits based on their genotypes, given the dominance hierarchy of alleles that affect coat color. The alleles and their corresponding phenotypes are provided in the table:
-
C: Full color (black or brown)
-
c<sup>h</sup>: Light gray coat
-
c<sup>h</sup>: Himalayan (white with colored nose, paws, and tail)
-
c: Albino (white)
The order of dominance is:
C > c<sup>h</sup> > c<sup>h</sup> > c
We need to determine the phenotype (coat color) for each genotype listed.
---
Solution:
#### Step 1: Understand the Dominance Hierarchy
The alleles are arranged in a dominance hierarchy:
1.
C (full color) is dominant over all other alleles.
2.
c<sup>h</sup> (light gray) is dominant over
c<sup>h</sup> (Himalayan) and
c (albino).
3.
c<sup>h</sup> (Himalayan) is dominant over
c (albino).
4.
c (albino) is recessive to all other alleles.
#### Step 2: Analyze Each Genotype
We will evaluate each genotype one by one based on the dominance hierarchy.
---
##### Genotype 1:
C C<sup>h</sup>
- Alleles present:
C and
c<sup>h</sup>
- Dominance:
C is dominant over
c<sup>h</sup>.
- Phenotype: Full color (black or brown).
---
##### Genotype 2:
C C<sup>h</sup>
- Alleles present:
C and
c<sup>h</sup>
- Dominance:
C is dominant over
c<sup>h</sup>.
- Phenotype: Full color (black or brown).
---
##### Genotype 3:
c c
- Alleles present:
c and
c
- Dominance: Both alleles are recessive (
c), so the recessive phenotype is expressed.
- Phenotype: Albino (white).
---
##### Genotype 4:
C c
- Alleles present:
C and
c
- Dominance:
C is dominant over
c.
- Phenotype: Full color (black or brown).
---
##### Genotype 5:
C<sup>h</sup> c
- Alleles present:
c<sup>h</sup> and
c
- Dominance:
c<sup>h</sup> is dominant over
c.
- Phenotype: Light gray coat.
---
##### Genotype 6:
C<sup>h</sup> c<sup>h</sup>
- Alleles present:
c<sup>h</sup> and
c<sup>h</sup>
- Dominance: Both alleles are the same (
c<sup>h</sup>), so the phenotype is expressed as
c<sup>h</sup>.
- Phenotype: Himalayan (white with colored nose, paws, and tail).
---
Final Answer:
Summarizing the phenotypes for each genotype:
1.
C C<sup>h</sup>: Full color (black or brown)
2.
C C<sup>h</sup>: Full color (black or brown)
3.
c c: Albino (white)
4.
C c: Full color (black or brown)
5.
C<sup>h</sup> c: Light gray coat
6.
C<sup>h</sup> c<sup>h</sup>: Himalayan (white with colored nose, paws, and tail)
$$
\boxed{
\begin{array}{ll}
\text{Genotype} & \text{Phenotype} \\
C C^h & \text{Full color (black or brown)} \\
C C^h & \text{Full color (black or brown)} \\
c c & \text{Albino (white)} \\
C c & \text{Full color (black or brown)} \\
C^h c & \text{Light gray coat} \\
C^h C^h & \text{Himalayan (white with colored nose, paws, and tail)}
\end{array}
}
$$
Parent Tip: Review the logic above to help your child master the concept of multiple allele worksheet.