HEALTH EDUCATION SYSTEMS INC (HESI) A2 EXAM • MATHEMATICS

Apply order of operations to evaluate expressions

Mastering the universal protocol that ensures every mathematical expression yields one unambiguous result.

Historical Context & Motivation

Mathematical notation, much like natural language, requires a shared grammar to prevent ambiguity. The expression 2 + 3 × 4, for instance, yields 14 if multiplication is performed first, but 20 if addition precedes it. Without a universally accepted convention, two competent mathematicians examining the same expression could arrive at contradictory values—a situation that would undermine every quantitative discipline from pharmacy dosage calculations to structural engineering. The order of operations is the convention that resolves this ambiguity, and its historical development tracks closely with the evolution of algebraic notation itself.

1489
Earliest Arithmetic Symbols
Johannes Widmann publishes the first known use of '+' and '−' in print, setting the stage for symbolic algebra. Before this, operations were described in verbose prose, which naturally imposed an order through sentence structure.
1557
The Equals Sign Appears
Robert Recorde introduces '=' in The Whetstone of Witte, enabling equations to be written symbolically. The increasing density of symbolic expressions begins to reveal the need for precedence rules.
1600s–1700s
Algebraic Notation Matures
Mathematicians such as Descartes, Leibniz, and Euler refine notation for exponents, grouping symbols, and functions. An implicit consensus emerges that multiplication and division bind more tightly than addition and subtraction, mirroring the convention used in commercial arithmetic.
1800s
Formal Codification in Textbooks
Nineteenth-century algebra textbooks begin explicitly stating the hierarchy: parentheses first, then exponents, then multiplication and division, and finally addition and subtraction. This formal codification ensures global consistency in pedagogy and professional practice.
1900s–Present
PEMDAS and Digital Computing
The mnemonic PEMDAS (or BODMAS in the UK) becomes a standard pedagogical tool. Programming languages and scientific calculators embed the order of operations into their parsers, making the convention a foundational element of computational logic.

For HESI A2 candidates preparing for graduate health-science programs, the order of operations is far from a trivial arithmetic drill. It underpins dosage calculations, lab-value conversions, and statistical interpretations—contexts in which an error in evaluation order can carry clinical consequences. The central question this lesson addresses is straightforward yet essential: given any algebraic expression, in what sequence must we perform the operations to guarantee the one correct result?

Core Principles & Definitions

The order of operations can be distilled into a hierarchy of four tiers, each specifying which operations take precedence. The widely used mnemonic PEMDAS—Parentheses, Exponents, Multiplication/Division, Addition/Subtraction—encodes this hierarchy, though it is critical to understand that multiplication and division share the same tier (processed left to right), as do addition and subtraction. Misinterpreting PEMDAS as imposing strict left-to-right ordering within 'M before D' or 'A before S' is one of the most common sources of error on standardized exams.

1

Parentheses (Grouping Symbols)

Evaluate expressions inside parentheses ( ), brackets [ ], braces { }, and absolute-value bars | | first. Nested grouping symbols are resolved from the innermost pair outward.
2

Exponents & Radicals

After grouping symbols, evaluate powers (e.g., 3²) and roots (e.g., √9). These are second-tier operations because exponentiation is repeated multiplication, so it logically precedes single-instance multiplication.
3

Multiplication & Division

These two operations share the same precedence level. Evaluate them left to right as they appear. Division is the inverse of multiplication, so neither inherently outranks the other.
4

Addition & Subtraction

The lowest-precedence tier. Like multiplication and division, these two share rank and are evaluated left to right. Subtraction is the addition of a negative, so they are algebraically equivalent in precedence.
KEY TAKEAWAY
Think of the order of operations like triage in an emergency department. Just as a trauma team addresses life-threatening injuries (airway, breathing, circulation) before treating minor lacerations, a mathematician resolves the most binding operations—grouping symbols and exponents—before handling the less binding ones—multiplication/division, then addition/subtraction. Skipping triage order leads to adverse outcomes in both settings.
⚠️ Common HESI A2 Trap
PEMDAS does not mean that multiplication always comes before division. The letters M and D represent operations of equal precedence, resolved left to right. The same applies to addition and subtraction.

Visual Explanation: The PEMDAS Hierarchy

The pyramid illustrates the four tiers of operational precedence. Operations at the apex (Parentheses) are evaluated first. Within the Multiplication/Division and Addition/Subtraction tiers, operations are resolved left to right as they appear in the expression.

The pyramid above makes a crucial structural point: there are not six distinct levels of precedence, but four tiers. The fact that multiplication and division occupy a single shared tier—and that addition and subtraction likewise share a tier—is one of the most frequently tested distinctions on the HESI A2 mathematics section. When two operations reside on the same tier, the tie-breaking rule is simply to evaluate from left to right, exactly as one reads English prose. This left-to-right convention applies only within a single tier; it does not override the vertical hierarchy.

Mathematical Framework

Although the order of operations is a convention rather than a theorem, it can be formalized with precision. Every well-formed arithmetic expression can be represented as a parse tree in which higher-precedence operations sit deeper in the tree, ensuring they are evaluated before lower-precedence ones. The following equations illustrate the convention applied to common HESI A2 expression types.

GROUPING FIRST
a × (b + c) = a × b + a × c
The parentheses force the addition b + c to be evaluated before the multiplication by a. This also demonstrates the distributive property, which is consistent with the order of operations: distributing a across the sum yields the same result as computing the grouped sum first.
EXPONENTS BEFORE MULTIPLICATION
a × b² = a × (b × b) ≠ (a × b)²
The exponent applies only to b, not to the product a × b. To apply the exponent to the entire product, explicit parentheses are required: (a × b)². This distinction appears frequently in unit conversion and dosage problems on the HESI A2.
LEFT-TO-RIGHT TIE-BREAKING
a ÷ b × c = (a ÷ b) × c ≠ a ÷ (b × c)
Since division and multiplication share the same precedence, the expression is evaluated left to right: first a ÷ b, then the quotient is multiplied by c. Incorrectly grouping b × c first would yield a different—and incorrect—result.
NESTED GROUPING SYMBOLS
a × {b + [c − (d + e)]} → resolve (d + e), then [c − result], then {b + result}, then multiply by a
Nested grouping symbols—parentheses inside brackets inside braces—are resolved from the innermost pair outward. This mirrors the recursive structure of parse trees in formal language theory.

Step-by-Step Evaluation Flowchart

When confronted with a complex expression on the HESI A2, a systematic approach prevents errors. The flowchart below maps the decision process a test-taker should follow when evaluating any expression. At each stage, you scan the expression for the highest-priority operation remaining, perform it, rewrite the simplified expression, and repeat until a single value remains.

Follow this flowchart from top to bottom each time you encounter an expression. After completing each step, rewrite the simplified expression before moving to the next tier. The example at the bottom traces 5 + 3² × (8 − 2) ÷ 6 through all four steps to reach 14.

Notice the loop-back arrow in the flowchart: after simplifying a set of parentheses, you may reveal new parentheses, exponents, or other operations that require another pass through the hierarchy. This iterative process is especially important for expressions with nested grouping symbols, which appear on the more challenging HESI A2 items. Each pass reduces the expression's complexity until only a single numeric value remains.

Worked Example

Consider the following expression, representative of the complexity encountered on the HESI A2 mathematics section:

PROBLEM EXPRESSION
18 ÷ 3² + 4 × (7 − 5) − 1
This expression contains parentheses, an exponent, multiplication, division, addition, and subtraction—every category in the PEMDAS hierarchy.
Evaluating 18 ÷ 3² + 4 × (7 − 5) − 1
1
Step 1 — ParenthesesIdentify and evaluate the innermost grouping symbol. Here, (7 − 5) = 2. The expression becomes: 18 ÷ 3² + 4 × 2 − 1.
18 ÷ 3² + 4 × 2 − 1
2
Step 2 — ExponentsEvaluate 3² = 9. A critical point: the exponent applies only to 3, not to the division 18 ÷ 3. The expression becomes: 18 ÷ 9 + 4 × 2 − 1.
18 ÷ 9 + 4 × 2 − 1
3
Step 3 — Multiplication & Division (left to right)Scan left to right for × and ÷. The first operation is 18 ÷ 9 = 2. The next is 4 × 2 = 8. The expression becomes: 2 + 8 − 1.
2 + 8 − 1
4
Step 4 — Addition & Subtraction (left to right)Scan left to right: 2 + 8 = 10, then 10 − 1 = 9.
Final Answer: 9
💡 Verification Strategy
After evaluating an expression, plug the result back into the context of the problem (if it is a word problem) to verify plausibility. On the HESI A2, where time pressure is a factor, writing out each intermediate expression on your scratch paper—rather than performing multiple steps mentally—significantly reduces arithmetic errors.

Common Errors & How to Avoid Them

Understanding where errors typically arise is as instructive as understanding the rule itself. The HESI A2 is designed to include distractor answer choices that correspond precisely to the most common mistakes. By anticipating these pitfalls, you can both verify your own work and eliminate implausible options under time pressure.

Five common order-of-operations errors and their remedies
Error TypeWhat HappensHow to Avoid
Left-to-right onlyIgnoring precedence entirely and evaluating every operation from left to right, as though reading prose.Always scan for the highest-tier operation first. Left-to-right applies only within a single tier.
M before D literallyPerforming all multiplications before any divisions, regardless of left-to-right position.Remember that M and D share the same tier. Process whichever appears first when reading left to right.
Exponent misattributionApplying an exponent to an adjacent coefficient or entire sub-expression rather than to its base alone.An exponent applies only to the immediately preceding number or parenthesized group. When in doubt, insert explicit parentheses.
Ignoring nested groupsEvaluating an outer set of parentheses before simplifying the inner set, leading to incorrect intermediate values.Always resolve from the innermost grouping symbol outward, layer by layer.
Sign errors with subtractionTreating subtraction as commutative (e.g., writing a − b as b − a) when rearranging terms.Rewrite subtraction as addition of a negative: a − b = a + (−b). This preserves the sign when reordering.
KEY TAKEAWAY
On the HESI A2, incorrect answer choices are rarely random; they are computed using the most common procedural errors. If you recognize that a distractor corresponds to, say, performing multiplication before a left-positioned division, you can confidently eliminate it—even under time pressure. Understanding common errors is itself a test-taking strategy.

Connection to Advanced Applications

While the HESI A2 tests the order of operations at the level of numerical expressions, the same hierarchical principles extend into more advanced mathematical and clinical contexts. Understanding this continuity reinforces why the convention matters and prepares you for the quantitative reasoning required in graduate health-science coursework.

How HESI A2 order-of-operations skills map onto graduate-level quantitative tasks
HESI A2 LevelGraduate-Level Extension
Evaluate 3 + 4 × 2Evaluate multi-step pharmacokinetic formulas: Dose = (Weight × Factor) ÷ (Volume × Interval), where grouping determines the correct dosage.
Parentheses override default precedenceIn statistics, the formula for variance σ² = Σ(xᵢ − μ)² / N requires squaring the deviation before summing—parentheses and exponent precedence are both in play.
Left-to-right rule for × and ÷Unit conversions in clinical chemistry involve chains of multiplication and division (dimensional analysis); left-to-right scanning ensures correct unit cancellation.
Nested parentheses (innermost first)Composite functions f(g(x)) in physiology modeling are evaluated inside-out, a direct extension of nested grouping symbols.

The structural logic of PEMDAS is also embedded in every scientific calculator, spreadsheet formula, and programming language you will encounter in graduate study. When you type =A1+B1*C1 in a spreadsheet, the software applies the same precedence hierarchy. A clinician who understands this convention can verify calculator outputs, catch data-entry errors, and construct correct formulas for patient-care computations—skills that bridge the gap between the HESI A2 and professional practice.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain why 8 − 3 + 2 equals 7 rather than 3. Which specific rule of the order of operations governs the evaluation of this expression?
PROBLEM 2BASIC CALCULATION
Evaluate: 12 + 6 ÷ 3 × 2 − 4
PROBLEM 3INTERMEDIATE
Evaluate: (4 + 6)² ÷ 5 − 3 × 2
PROBLEM 4APPLIED
A nursing student needs to calculate the drip rate for an IV infusion using the formula: Rate = (Volume × Drop factor) ÷ (Time in hours × 60). If Volume = 500 mL, Drop factor = 15 gtt/mL, Time = 4 hours, evaluate the expression (500 × 15) ÷ (4 × 60) to find the rate in gtt/min.
PROBLEM 5CRITICAL THINKING
A student claims that the expression 24 ÷ 2(3 + 1) equals 3 because 'you must resolve the implicit multiplication 2(4) = 8 before the division.' Another student claims the answer is 48 because 'division and multiplication share precedence, so you go left to right: 24 ÷ 2 = 12, then 12 × 4 = 48.' Using the standard PEMDAS convention, determine which student is correct and explain the source of the ambiguity.

Lesson Summary

The order of operations is a four-tier precedence hierarchy—Parentheses, Exponents, Multiplication & Division (equal rank, left to right), and Addition & Subtraction (equal rank, left to right)—that guarantees every mathematical expression yields exactly one unambiguous result. The mnemonic PEMDAS encodes this hierarchy, but it is essential to remember that M/D and A/S each represent shared tiers, not sequential steps.

To evaluate any expression on the HESI A2: first resolve all grouping symbols (innermost first), then exponents and radicals, then multiplication and division left to right, and finally addition and subtraction left to right. Writing out each intermediate expression on scratch paper is the single most effective strategy for avoiding the common errors—such as treating M before D literally or misattributing exponents—that HESI A2 distractor choices are designed to exploit.

Varsity Tutors • Health Education Systems Inc (HESI) A2 Exam • Apply order of operations to evaluate expressions