Complete the code to define the characteristic impedance of a microstrip line.
Z0 = 87 / sqrt([1] + 1.41)
The characteristic impedance depends on the dielectric constant of the PCB material.
Complete the code to calculate the signal delay in a PCB trace.
delay = sqrt([1]) * length / speed_of_lightSignal delay depends on the relative permittivity of the PCB material.
Fix the error in the formula to calculate the impedance of a differential pair.
Zdiff = 2 * [1] - Z0
Zsingle represents the impedance of a single-ended trace, which is needed to calculate differential impedance.
Fill both blanks to complete the formula for signal integrity margin.
margin = [1] - [2]
The margin is the difference between the maximum signal voltage and the noise voltage.
Fill all three blanks to complete the formula for crosstalk voltage.
Vcrosstalk = [1] * [2] / [3]
Crosstalk voltage depends on coupling coefficient, aggressor voltage, and inversely on distance between traces.
