<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
body { font-family: 'Inter', sans-serif; }
h1 { color:#1e3a5f; font-weight:800; letter-spacing:-0.01em; }
h1::after { content:''; display:block; width:2.5em; height:4px; background-color:#1f6098; border-radius:2px; margin-top:0.4em; margin-bottom:0.5em; }
</style>

# Lesson 34 Flashcards

Click a question to reveal the answer.

<details>
<summary><strong>1. What is RADAR and what does it stand for?</strong></summary>
<div class="card-answer">

RADAR stands for Radio Detection And Ranging.

It uses electromagnetic waves to:
- Detect objects (presence)
- Determine their distance (range)

</div>
</details>

<details>
<summary><strong>2. How does a RADAR determine the range to a target?</strong></summary>
<div class="card-answer">

By measuring the round-trip time of a transmitted signal:

$$
R = \frac{c \Delta t}{2}
$$

- $c$ = speed of light
- $\Delta t$ = round-trip time

</div>
</details>

<details>
<summary><strong>3. Why is there a factor of 2 in the RADAR range equation?</strong></summary>
<div class="card-answer">

Because the signal travels to the target and back.

- Total measured time is round-trip
- Distance must be divided by 2 to get one-way range

</div>
</details>

<details>
<summary><strong>4. What is line-of-sight (LOS) range for RADAR?</strong></summary>
<div class="card-answer">

The maximum distance before Earth curvature blocks the signal:

$$
r_{\max,LOS} = \sqrt{2h_{\text{radar}}} + \sqrt{2h_{\text{target}}}
$$

</div>
</details>

<details>
<summary><strong>5. What is RADAR cross section (RCS)?</strong></summary>
<div class="card-answer">

A measure of how much energy a target reflects.

- Denoted $\sigma$
- Units: $\text{m}^2$ or dBsm
- Larger RCS → easier detection

</div>
</details>

<details>
<summary><strong>6. What is the power density at a target from a RADAR?</strong></summary>
<div class="card-answer">

$$
S = \frac{P_T G_T}{4 \pi R^2}
$$

</div>
</details>

<details>
<summary><strong>7. What is the RADAR equation?</strong></summary>
<div class="card-answer">

$$
P_R = P_T G^2 \sigma \frac{\lambda^2}{(4\pi)^3 R^4}
$$

</div>
</details>

<details>
<summary><strong>8. How does received power scale with distance in RADAR?</strong></summary>
<div class="card-answer">

$$
P_R \propto \frac{1}{R^4}
$$

- Doubling distance → power decreases by 16
- Much steeper than Friis ($1/R^2$)

</div>
</details>

<details>
<summary><strong>9. What improves RADAR detection capability?</strong></summary>
<div class="card-answer">

- Higher transmit power $P_T$
- Higher antenna gain $G$
- Larger wavelength $\lambda$
- Larger RCS $\sigma$
- More sensitive receiver (lower $P_{R,\min}$)

</div>
</details>

<details>
<summary><strong>10. What is a RADAR Warning Receiver (RWR)?</strong></summary>
<div class="card-answer">

A receiver that detects incoming RADAR signals.

- Acts like a communications receiver
- Uses Friis equation
- Alerts target before RADAR detection (ideally)

</div>
</details>
