Try the Interactive Calculator
Calculate results, get Excel formulas, and see worked examples
Open CalculatorAll Electrical and Computer: Computer Engineering PE Equations (9)
-
Big O Notation
Upper bound on algorithm time complexity.
intermediate -
Boolean Simplification
Simplify using identities, e.g., A + A'B = A + B.
intermediateHigh Frequency -
Cache Hit Rate
Fraction of memory accesses found in cache.
basic -
CMOS Power Dissipation
Dynamic power in CMOS circuits.
intermediate -
Cycles Per Instruction (CPI)
Average number of clock cycles per instruction.
intermediateHigh Frequency -
Binary to Decimal Conversion
Converts a binary number to its decimal equivalent.
basic -
Propagation Delay
Time for signal to propagate through a gate.
basic -
Mean Time Between Failures (MTBF)
Average time between failures.
basic -
Shannon Channel Capacity
Maximum data rate over a noisy channel.
intermediate
Frequently Asked Questions
How do I use Big O Notation on the PE exam?
Big O notation focuses on the dominant term for large inputs. Drop constants and lower-order terms. For PE software questions, recognize that O(n log n) is optimal for comparison-based sorting, O(n²) indicates nested loops, and O(log n) suggests divide-and-conquer or tree operations.
How do I use Boolean Simplification on the PE exam?
This identity appears frequently in digital logic simplification problems. Remember that A + A'B always simplifies to A + B. Look for opportunities to apply this before using K-maps or other methods, as it can dramatically reduce circuit complexity.
How do I use Cache Hit Rate on the PE exam?
Cache hit rate is fundamental to computer performance analysis. Remember it's always between 0 and 1 (or 0% to 100%). Higher hit rates dramatically improve system performance. Often appears in computer architecture problems involving memory hierarchy optimization.
How do I use CMOS Power Dissipation on the PE exam?
This equation represents only dynamic (switching) power, not static leakage power. On the PE exam, look for problems involving digital circuit power budgets, battery life calculations, or thermal design. Remember that capacitance includes both gate and interconnect capacitances.
How do I use Cycles Per Instruction (CPI) on the PE exam?
CPI is fundamental to processor performance analysis. Remember that lower CPI means better performance. Often given as percentages of instruction mix rather than absolute counts - convert percentages to instruction counts first. Watch for questions combining CPI with clock frequency to find execution time.