Hardware interleaved practice
Instructions: Solve all problems. Each targets a different subtopic — read carefully and choose the correct method before computing. Use eV at K, for silicon unless stated otherwise. Show reasoning. Total: 50 marks.
1. A silicon sample is doped with phosphorus at . Assuming full ionization at 300 K, find the electron and hole concentrations. State which are majority/minority carriers. (5 marks)
2. Explain qualitatively why a material with a band gap of (diamond) is an insulator while one with (silicon) is a semiconductor at room temperature. Reference the population of the conduction band. (4 marks)
3. A PN junction has (p-side) and (n-side). Compute the built-in potential at 300 K. (5 marks)
4. For an electron mobility at 300 K, use the Einstein relation to find the diffusion coefficient . (4 marks)
5. GaAs and Si both have band gaps near , yet GaAs is used in LEDs and Si is not. Explain the physical distinction responsible, and name which is direct and which is indirect. (5 marks)
6. A silicon diode has saturation current . Using the Shockley equation, find the current at a forward bias of , K, ideality factor . (6 marks)
7. In an n-type sample, an electric field of is applied. Electron concentration is , . Compute the drift current density . (5 marks)
8. Sketch and describe qualitatively what happens to the depletion region width and majority-carrier flow when a PN junction is switched from forward to reverse bias. (5 marks)
9. An electron concentration profile varies linearly from at to at . With , find the diffusion current density. (6 marks)
10. A semiconductor at 300 K has . It is doped p-type with . Using the mass action law, find the minority electron concentration. (5 marks)
Answer keyMark scheme & solutions
1. (Subtopic 2.1.6/2.1.12 — carrier concentration & majority/minority) Full ionization ⇒ majority electrons . Minority holes via mass action: . Electrons = majority, holes = minority. Why this method: donor doping fixes majority carrier directly; minority requires mass action, not direct doping.
2. (Subtopic 2.1.2/2.1.3 — band gap & conductivity) Thermal excitation across the gap follows . At 300 K, eV. For eV the exponent is astronomically negative → essentially no carriers in the conduction band → insulator. For eV, a small but non-negligible population is excited → measurable conductivity → semiconductor. Why: conceptual comparison — recognize the exponential gap dependence, not a plug-in.
3. (Subtopic 2.2.6 — built-in potential) Why: junction problem with both dopings → the log formula (distinguish from single-side carrier calc).
4. (Subtopic 2.1.10 — Einstein relation) Why: mobility→diffusion link is Einstein; note in volts times mobility.
5. (Subtopic 2.1.5 — direct vs indirect) GaAs is direct (conduction-band minimum aligned in -space with valence-band maximum): electron–hole recombination emits a photon efficiently. Si is indirect: recombination requires a phonon to conserve momentum, so radiative emission is inefficient. Hence GaAs → LEDs, Si → not. Why: the LED clue signals band-gap type, not gap magnitude.
6. (Subtopic 2.2.10 — Shockley equation) , . Why: forward bias current → Shockley exponential; the "−1" is negligible here.
7. (Subtopic 2.1.8 — drift current) ; ; . Why: applied field → drift (), NOT diffusion (no gradient given).
8. (Subtopic 2.2.7/2.2.8 — bias behavior)
- Forward bias: external voltage opposes , lowers barrier, depletion region narrows, majority carriers flow readily → large current.
- Reverse bias: voltage adds to , raises barrier, depletion region widens, majority flow blocked, only tiny reverse saturation current from minority carriers. Why: qualitative comparison — recognize barrier/width behavior differs by sign of bias.
9. (Subtopic 2.1.9 — diffusion current) Gradient: Magnitude (electrons diffuse toward low-concentration region; current sign per convention). Why: a spatial gradient (not a field) ⇒ diffusion formula. Convert μm→cm carefully.
10. (Subtopic 2.1.7 — mass action law) . Then . Why: acceptor doping fixes holes; electrons via .
[
{
"claim": "Problem 3: V_bi = 0.775 V",
"code": "import math\nkT=0.0259\nNA=1e17; ND=1e16; ni=1e10\nVbi=kT*math.log(NA*ND/ni**2)\nresult = abs(Vbi-0.775)<0.005"
},
{
"claim": "Problem 6: Shockley current approx 1.16e-4 A",
"code": "import math\nIS=1e-14; V=0.6; kT=0.0259\nI=IS*(math.exp(V/kT)-1)\nresult = abs(I-1.16e-4)/1.16e-4 < 0.05"
},
{
"claim": "Problem 1: minority holes = 2e3 cm^-3",
"code": "ni=1e10; n=5e16\np=ni**2/n\nresult = abs(p-2e3)<1"
}
]