Exercises — Dynamic vs static power consumption
This is the practice page for Dynamic vs Static Power. Work each problem before opening the solution. Every symbol used here was built in the parent note; the two formulas you need are collected below so you never have to guess what a letter means.

Level 1 — Recognition
Can you identify which term is which and read a formula?
Exercise 1.1
Which of the following make dynamic power go up, and which make static power go up? For each: (a) higher clock frequency , (b) higher leakage current , (c) higher activity factor , (d) chip sitting completely idle with the clock stopped.
Recall Solution
- (a) higher → appears only in → raises dynamic power.
- (b) higher → appears only in → raises static power.
- (c) higher → more cycles actually switch → raises dynamic power.
- (d) clock stopped means , so , but leakage never stops → only static power remains. This is exactly why an idle phone still drains its battery.
Exercise 1.2
appears in both formulas. In which one does it appear squared, and what does that squaring physically represent?
Recall Solution
is squared in the dynamic/switching formula, . It is squared because charging a capacitor to voltage costs energy per cycle — one for the amount of charge , another for the "height" that charge is pushed up to. In the static formula it appears to the first power only (), because it is just voltage times a leaking current.
Level 2 — Application
Plug numbers in correctly, mind the units.
Exercise 2.1
A logic block has pF, V, GHz, . Find its switching power.
Recall Solution
Group the prefixes first: (milli). Numbers: .
Exercise 2.2
A chip leaks mA at V while idle. What is its static power?
Recall Solution
Note this burns even with the clock stopped — a pure leakage tax.
Exercise 2.3
Same block as 2.1, but now the designer doubles the clock to GHz with everything else unchanged. What is the new switching power, and by what factor did it change?
Recall Solution
Power is linear in , so doubling doubles : Factor of change: .
Level 3 — Analysis
Reason about ratios and dominant terms.
Exercise 3.1
A core runs at V drawing W of switching power. Marketing wants a "low-power mode" at V (frequency held constant for now). What switching power results?
Recall Solution
Only changes, and , so take the ratio: A 33% voltage cut → 56% power cut. This quadratic leverage is the heart of Dynamic Voltage Frequency Scaling (DVFS).
Exercise 3.2
A chip dissipates W dynamic and W static at V, GHz. The clock is halted (deep idle, ) but the rails stay powered. Total power now?
Recall Solution
Halting the clock sets , so . Static power does not depend on , so it is unchanged: To kill that last 10 W you must remove the rail entirely — that is what Power Gating Techniques do.
Exercise 3.3
Two design points: A = ( V, ), B = ( V, ). Same and . Which has higher switching power, and by what ratio ?
Recall Solution
and cancel in the ratio: Design A dissipates ~1.78× more. The higher activity beats the lower voltage here — you must weigh both factors, not eyeball one.
Level 4 — Synthesis
Combine multiple effects that push in opposite directions.
Exercise 4.1
Realistic DVFS: dropping voltage forces a slower clock. A core starts at V, GHz. It scales to V, and to keep timing valid the frequency must drop to GHz. With and fixed, find the switching-power ratio .
Recall Solution
Now both and change: So — a 62.5% reduction. The voltage term does most of the work; the frequency term adds a further linear cut.
Exercise 4.2
A processor's total power is . At V: W, W. Suppose you lower to 0.7 V. Switching power scales as . Leakage is dominated by subthreshold current, which for this problem we take to scale linearly with (through the multiplier in , holding fixed). Find the new total power.
Recall Solution
Switching term (): Static term ( here, held fixed): Total: Down from 25 W — but notice static's share grew from to . As you scale voltage, leakage becomes a relatively bigger problem. (In real silicon leakage falls slower than this because itself depends on threshold effects — see Subthreshold Slope.)
Level 5 — Mastery
End-to-end reasoning across the whole chapter.
Exercise 5.1
A mobile SoC datasheet: nF (nanofarads) aggregate switched capacitance, V, GHz, , and measured idle static power W. (a) Compute switching power. (b) Compute total power under load. (c) The Thermal Design Power (TDP) budget is 4 W. How much thermal headroom (W) remains?
Recall Solution
(a) (nano × giga cancel completely): (b) (c) Plenty of thermal room — this SoC could clock up (raise ) or run more cores before hitting TDP.
Exercise 5.2
Same SoC. Sustained heavy workload raises the aggregate activity to (4× more switching) and the DVFS governor boosts to V, GHz. Leakage rises with voltage: new W. Does the chip exceed its 4 W TDP?
Recall Solution
New switching power — scale from the 0.3 W baseline by each changed factor: Total: → within TDP, with W headroom. If activity climbed further the governor would have to throttle (drop /) to stay under budget — the classic thermal-throttling loop.
Exercise 5.3
Design judgment. You may reduce one knob by 20%: (i) , (ii) , or (iii) . Which cuts switching power the most, and why? Assume each is independent for this comparison.
Recall Solution
- Cutting or by 20% → linear → power becomes → 20% cut.
- Cutting by 20% → quadratic → power becomes → 36% cut. Voltage wins, because it is the only knob that enters squared. This is precisely why every low-power technique reaches for voltage scaling first (see Dynamic Voltage Frequency Scaling (DVFS)), accepting the frequency drop it forces as a fair trade.
Recall Quick self-check
Why is voltage the most powerful knob for cutting switching power? ::: Because it enters squared, while and are only linear. What single change removes switching power but not leakage? ::: Stopping the clock () — leakage is independent of . What does TDP actually specify? ::: The cooling budget (sustained heat the cooler must remove), not the instantaneous power draw.
Related: Capacitance in VLSI · CMOS Inverter Design · Power Gating Techniques · FinFET Transistors · Signal Transition Time · Amdahl's Law