Positional notation is a way of writing numbers where each digit's value equals the digit multiplied by the base raised to the power of its position. In AP CSP, it's the system behind both decimal (base 10) and binary (base 2), and it's how you convert between them on the exam.
Positional notation is the rule that makes the same digit worth different amounts depending on where it sits. In the decimal number 555, each 5 means something different: 500, 50, and 5. That's because each position has a place value equal to the base raised to a power, counting from position 0 on the right (EK DAT-1.C.5). In base 10, the place values are 1, 10, 100, 1000, and so on. In base 2, they're 1, 2, 4, 8, 16.
Here's the part that makes binary click. Binary isn't a weird new math system. It's the exact same positional notation you've used since elementary school, just with base 2 instead of base 10 (EK DAT-1.C.4). A digit's numeric value is the digit times the place value of its position. So 101 in binary is (1 × 4) + (0 × 2) + (1 × 1) = 5. Once you see decimal and binary as two flavors of the same system, conversions stop feeling like memorization and start feeling like arithmetic.
Positional notation lives in Topic 2.1 (Binary Numbers) in Unit 2: Data, and it directly supports learning objective AP Comp Sci P 2.1.C, which asks you to convert positive integers between binary and decimal and to compare and order binary numbers. You literally cannot do those conversions without understanding place value as powers of the base. It also props up AP Comp Sci P 2.1.A, because explaining how data is represented with bits (EK DAT-1.A.3) only makes sense once you know how strings of 0s and 1s encode actual numeric values. This is one of the few topics on the AP CSP exam where you do real calculation by hand, so it's a reliable source of multiple-choice points.
Keep studying AP® Computer Science Principles Unit 2
Number Base (Unit 2)
The base is the number you raise to powers in positional notation. Change the base from 10 to 2 and the digits, place values, and conversions all change, but the positional rule stays identical (EK DAT-1.C.1).
Integer Representation (Unit 2)
Computers store integers as fixed-length binary strings, which is positional notation with a hard cap on positions. With n bits you only get n place values, which limits the range of values you can represent (EK DAT-1.B.1).
Overflow (Unit 2)
Overflow is what happens when a result needs a higher place value than the fixed number of bits allows. If your largest position is 2^7 and the answer needs 2^8, the number doesn't fit and you get an error.
Digital Data (Unit 2)
Everything a computer stores, including images, sound, and text, bottoms out in bits (EK DAT-1.A.2). Positional notation is the bridge that turns those raw 0s and 1s into meaningful numbers.
This shows up as multiple-choice conversion and comparison problems tied to AP Comp Sci P 2.1.C. Expect to convert a positive base-10 integer to binary and back, order a set of binary numbers from least to greatest, or identify what system a description matches (for example, a question describing a system that uses only digits 0-9 is asking you to name base 10 / decimal). A classic trap involves leading zeros: 00101 and 101 represent the same value, because the extra zeros sit in positions whose contribution is 0 × place value, which adds nothing. AP CSP has no released FRQs that test this directly (the Create task is your performance component), so positional notation is purely an MCQ skill. Know your powers of 2 cold: 1, 2, 4, 8, 16, 32, 64, 128.
Positional notation is the system, and the base is a setting within that system. Positional notation says every digit gets multiplied by (base)^(position). The base just tells you which number gets raised to those powers and how many distinct digits you're allowed (base 2 uses 0-1, base 10 uses 0-9). Decimal and binary are both positional notation; they differ only in base.
In positional notation, a digit's value equals the digit multiplied by the base raised to the power of its position, with positions numbered starting at 0 on the right.
Binary and decimal use the exact same positional rule; binary just uses base 2 with digits 0 and 1, while decimal uses base 10 with digits 0-9.
To convert binary to decimal, multiply each bit by its place value (1, 2, 4, 8, 16, ...) and add the results, so 101 in binary equals 4 + 0 + 1 = 5.
Leading zeros don't change a number's value, because a 0 in any position contributes 0 times that place value, so 00101 and 101 are the same number.
Fixed numbers of bits cap the available place values, which limits the range of representable integers and can cause overflow (EK DAT-1.B.1).
Memorize the powers of 2 up through 128 so binary-decimal conversions on the MCQ section take seconds instead of minutes.
It's a number-writing system where each digit's value depends on its position, with place values equal to the base raised to a power. AP CSP tests it in Topic 2.1, where you convert between binary (base 2) and decimal (base 10).
No. Binary and decimal are the same positional notation system with different bases. Decimal place values are powers of 10 (1, 10, 100), binary place values are powers of 2 (1, 2, 4, 8), and the digit-times-place-value rule is identical in both.
Positional notation is the overall system where position determines value; the base is the specific number raised to powers within it. So binary and decimal are both positional notation, just with bases 2 and 10.
No. A 0 in any position adds 0 times that place value, so 00101 and 101 both equal 5 in decimal. The exam can use this to test whether you actually understand place value rather than just pattern-matching string length.
Because the rightmost place value is the base raised to the 0 power, which equals 1 in any base. Numbering from 0 makes the math line up: position n always has place value base^n.
Connect this key term to the AP exam workflow: review the course, practice questions, and check related study tools.
Review units, study guides, and course resources.
Check this vocabulary in multiple-choice context.
Apply key concepts in written AP responses.
Estimate the exam score you are working toward.
Review the highest-yield facts before practice.
Put the full course together before test day.