Mastering AMC 1012 Book
Mastering AMC 1012 Book
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Combinatorics 8
1 Permutations and Combinations . . . . . . . . . . . . . . . . . . . . . . . . . 8
2 Probability . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
3 Casework . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38
4 Complementary Counting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57
7 Combinatorial Identities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 94
11 Recursion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137
Algebra 151
13 Algebraic Manipulations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 151
1
OmegaLearn.org Contents
28 Bases . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 301
Geometry 319
30 Angle Chasing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 319
34 Quadrilaterals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 400
35 Circles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 424
36 Polygons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 463
2
OmegaLearn.org Contents
41 Inequalities . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 542
42 Logarithms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 549
3
Preface
Motivation
This book was created to provide a comprehensive overview of the most important concepts on
the AMC 10/12 examinations. The book includes video lectures for every chapter, formulas
for every topic, and hundreds of examples and practice problems with detailed video solutions.
• Combinatorics
• Algebra
• Number Theory
• Geometry
Discord Server
Join our Discord Server to discuss problems from the book and for help with math contest
preparation.
Feedback Form
If you have any feedback, find any errors, or think of any interesting problems that should be
added here, please fill out this Feedback Form or email us at omegalearn.info@gmail.org.
Book Updates
We appreciate your feedback and will update the book regularly by adding new topics and
problems. Please bookmark OmegaLearn.org to get the Latest Version of this book.
Video Content
The book includes video lectures for every chapter. All the lecture videos are available on
our YouTube Channel. These videos should provide a good foundation for anyone preparing
for math competitions.
4
OmegaLearn.org Preface
1. All you need to know about Math Competitions from Elementary to High School
2. How to prepare for AMC 10/12 and qualify for AIME and USA(J)MO
This is the video course accompanying this book, and includes video lectures for every
chapter. We explain all the important concepts from this book, along with many useful
examples showing the application of those concepts.
This is an earlier course which covered the most fundamental topics on the AMC 10/12
exams. Here is the list of topics that were covered:
5
OmegaLearn.org Preface
9. Logarithms
10. Meta-solving Techniques - how to find answers without solving the problem
Each chapter includes relevant formulas for the topic along with instructive Example
Problems that show interesting applications of the concept.
Then, there is a Practice Problems section, which includes problems from AMC 10/12,
AIME and original problems. These problems have a detailed video solution.
There is also an Additional Problems section with more problems (on the harder side) for
extra practice.
The Answer for each problem is hidden. If you click on ”Answer:” the answer will be
displayed. Unfortunately this feature is not supported on some PDF readers (including
Preview on Mac) but it works great on ”Adobe Acrobat Reader”. If your PDF reader doesn’t
display the answer, please use Adobe Acrobat reader which is available for free.
Hopefully, the curated collection of examples and problems in this book will improve your
problem solving skills and help you perform better on the AMC 10/12 exams. Good Luck!
6
Combinatorics
7
Chapter 1
Video Lecture
8
OmegaLearn.org Chapter 1. Permutations and Combinations
9
OmegaLearn.org Chapter 1. Permutations and Combinations
1.1 Factorials
Definition 1.1.1. A factorial is the product of all positive integers less than or equal to a
given positive integer. In other words n! = n × (n − 1) × (n − 2) × · · · × 1.
The number of ways of arranging n objects in a circle where rotations of the same
arrangement aren’t considered distinct is (n − 1)!
The number of ways of arranging n objects in a circle where rotations of the same
arrangement aren’t considered distinct and reflections of the same arrangement aren’t
considered distinct is (n−1)!
2
Remark 1.2.3
The reason that this is true is because we can simply fix 1 person to be at the top and
there are (n − 1)! ways to arrange the other people. This accounts for rotations since
rotating an arrangement will result in someone else on top. We divide by 2 for reflections
because of symmetry on both the left and right sides of the person chosen to be at the
top.
10
OmegaLearn.org Chapter 1. Permutations and Combinations
Example 1.1
How many 4 digit numbers exist such that the first digit is odd and the other 3 digits
are even and all digits distinct?
Solution 1.1
The first digit has 5 choices (1, 3, 5, 7, or 9). The 2nd digit also has 5 choices (0, 2, 4, 6, 8).
Do we have to subtract any of the choices of the 2nd digit to make sure the
numbers are distinct?
Keep in mind that although the digits have to be distinct, the 2nd digit is even and
the first digit is odd, so there is no overlap.
The 3rd digit can be any even number except the one chosen for the 2nd digit, so it has
4 choices. The 4th digit can be any even number except those chosen for the 2nd and 3rd digit.
5 × 5 × 4 × 3 = 300
Solution 1.2
Without the condition, the answer would just be (6 − 1)! = 5! = 120 as we can fix 1 of the 6
people at the top and permute the remaining 5 people.
Where must the enemies sit so that none of them are sitting next to each
other?
Since there are only 6 total people, there must be exactly one other person between each of
the enemies as seen in the diagram below where the red X’s represent the enemies.
11
OmegaLearn.org Chapter 1. Permutations and Combinations
Should we again try to fix someone at the top to deal with rotations?
Yes! By fixing Gauss at the top (arbitrarily), we can now simply order the remaining
5 people without having to worry about the rotation condition.
Note that the 3 possible locations of the enemies is fixed so there are 3! ways to permute them.
We already fixed Gauss (someone without enemies) so there are 2! ways to permute the other
2 people who don’t have enemies.
Video Solution
12
OmegaLearn.org Chapter 1. Permutations and Combinations
Example 1.4
Peter is packing his pencil case for the AMC 12. He must pack 3 distinct pencils, 2
distinct erasers, and 2 distinct markers in some order. However, he will not put an item
in his case if there are already more of that type of item than any other type of item.
(Eg. Peter will not put another pencil in his case if there are already more pencils than
markers or more pencils than erasers in the case). How many different orders are there
for Peter to put items in his case?
Video Solution
Example 1.5
How many ways are there to rearrange the letters in COMPUTER such that the C, O,
M, and P stay together (not necessarily in the same order)?
Solution 1.3
This problem is slightly different from the standard word rearrangement problems because
we now have a constraint.
How should we deal with the condition that the COMP must stay together?
Let’s treat COMP as 1 block. Since the letters anyways have to stay together, let call this
block a COM P . Now, instead, we can find the number of arrangments of COM P UTER.
13
OmegaLearn.org Chapter 1. Permutations and Combinations
Notice that this is just 5! since all the letters (or symbols) are different.
Remember that letters in the word COMP can appear in any order inside the box, so
we have to also account for rearrangements of these letters within the COM P .
For each unique arrangement of COM P UTER, how many ways are there to
arrange the letters in the word COM P ?
Video Solution
14
OmegaLearn.org Chapter 1. Permutations and Combinations
Remark 1.4.2
This is not only true for words! The number of ways of arranging objects or anything
else is also the same.
Video Solution
Remark 1.4.3
Don’t forget to add 1 to the number of words before USAMO in alphabetical order!
1.5 Combinations
Definition 1.5.1. A combination is a possible arrangement in a collection of items where
the order of the selection does not matter.
Remark 1.5.2
Usually, the words ”permute”, ”order does matter”, etc. imply a permutation while the
words ”choose”, ”select”, ”order doesn’t matter”, etc. imply a combination.
n(n − 1) . . . (n − k + 1)
!
n n!
= =
k k!(n − k)! k!
Remark 1.5.4
Notice that ! !
n n
=
k n−k
15
OmegaLearn.org Chapter 1. Permutations and Combinations
This is true because we can see choosing k objects on the left hand side is equivalent to
the n − k objects that will not be selected on the right hand side.
Solution 1.4
To solve this problem, we will find the number of ways of choosing managers and other
employees separately.
6 6×5 30
!
= = = 15
2 2! 2
Next, how many ways are there to select the 5 other employees?
Since 2 of the experienced applicants were already selected, there are 4 experienced ap-
plicants and 7 inexperienced applicants left.
Therefore, we must select 4 employees out of the 11 remaining people. We can do this
in
11 11 × 10 × 9 × 8 11 × 10 × 72 72
!
= = = 11 × 10 × = 11 × 10 × 3 = 330
4 4! 24 24
Therefore, in total, how many ways are there to select the 3 managers and
5 other employees?
Since there are 15 ways to select the managers and 330 ways to select the other employees,
there will be 15 × 330 = 4950 ways to select both the managers and the employees.
16
OmegaLearn.org Chapter 1. Permutations and Combinations
Video Solution
Video Solution
Example 1.11
Robert has 4 indistinguishable gold coins and 4 indistinguishable silver coins. Each coin
has an engraving of one face on one side, but not on the other. He wants to stack the
eight coins on a table into a single stack so that no two adjacent coins are face to face.
Find the number of possible distinguishable arrangements of the 8 coins.
Solution 1.5
First, let’s deal with the orderings of the coins.
It must also be face up as if it’s face down, then the faces will meet.
17
OmegaLearn.org Chapter 1. Permutations and Combinations
The moment the coin first becomes face up, all the remaining coins on top must be face up
as well! If none of the coins are face up, then there is 1 orientation.
We simply have to pick a coin to be the first face up coin and every other coin’s orien-
tation is fixed. There are 8 ways to do this.
In total, we have 9 orientations for the faces of the coins and 8
4
= 70 ways to order
the gold and silver coins giving us an answer of 70 × 9 = 630 .
1.6 Subsets
Theorem 1.6.1
The number of subsets of a set of size n is 2n .
Remark 1.6.2
We have 2 choices for each element in the set: whether to include or not include the
element in our subset, and since there are n elements in the set, the total number of
subsets is 2 × 2 × 2 × · · · × 2 (n times).
Note: This means that one of our subsets is the empty subset, where we decide to
not include all of the elements. Remember to check the problem wording whether we
should count the empty subset as valid or not.
Video Solution
18
OmegaLearn.org Chapter 1. Permutations and Combinations
Solution 1.6
It’s definitely possible to manually add them for all possible subsets. However, there is a
much more clever way of approaching this problem.
As seen in the table, the total sum is 12. In fact, we can pair up the subsets so that
the sum of each pair is 3!
For every alternating sum that includes 3 of the form 3 - x, by removing the 3 from
the alternating sum becomes x as all the numbers that were added in the original alternating
sum will be subtracted in the alternating sum without 3 and vice versa!. Therefore, everything
will cancel out but the 3!.
Like earlier, we pair up all subsets that include and 7 and ones that don’t include a 7.
7
In total, we have 22 = 64 pairs each with a sum of 7 giving an answer of 64 × 7 = 448 .
How many distinguishable arrangements are there of 1 brown tile, 1 purple tile, 2
green tiles, and 3 yellow tiles in a row from left to right? (Tiles of the same color are
indistinguishable.)
Video Solution
19
OmegaLearn.org Chapter 1. Permutations and Combinations
A child builds towers using identically shaped cubes of different colors. How many
different towers with a height of 8 cubes can the child build with 2 red cubes, 3 blue
cubes, and 4 green cubes? (One cube will be left out.)
Video Solution
A license plate in a certain state consists of 4 digits, not necessarily distinct, and 2
letters, also not necessarily distinct. These six characters may appear in any order, except
that the two letters must appear next to each other. How many distinct license plates
are possible?
Video Solution
At a gathering of 30 people, there are 20 people who all know each other and 10
people who know no one. People who know each other hug, and people who do not know
each other shake hands. How many handshakes occur within the group?
Video Solution
Henry’s Hamburger Haven offers its hamburgers with the following condiments: ketchup,
mustard, mayonnaise, tomato, lettuce, pickles, cheese, and onions. A customer can choose
one, two, or three meat patties and any collection of condiments. How many different
kinds of hamburgers can be ordered?
Video Solution
20
OmegaLearn.org Chapter 1. Permutations and Combinations
Video Solution
A game uses a deck of n different cards, where n is an integer and n ≥ 6. The number
of possible sets of 6 cards that can be drawn from the deck is 6 times the number of
possible sets of 3 cards that can be drawn. Find n.
Video Solution
What is the number of ways the numbers from 1 to 14 can be split into 7 pairs such that
for each pair, the greater number is at least 2 times the smaller number?
(A) 108 (B) 120 (C) 126 (D) 132 (E) 144
Video Solution
Video Solution
21
OmegaLearn.org Chapter 1. Permutations and Combinations
How many 15-letter arrangements of 5 A’s, 5 B’s, and 5 C’s have no A’s in the first 5
letters, no B’s in the next 5 letters, and no C’s in the last 5 letters?
!3
5
5 15!
(A) (B) 35 · 25 (C) 215 (D) (E) 315
X
k=0 k (5!)3
Video Solution
Additional Problems
Problem 1.7.11 (AIME)
Ten points in the plane are given, with no three collinear. Four distinct segments
joining pairs of these points are chosen at random, all such segments being equally likely.
The probability that some three of the segments form a triangle whose vertices are among
the ten given points is m/n, where m and n are relatively prime positive integers. Find
m + n.
22
OmegaLearn.org Chapter 1. Permutations and Combinations
Three numbers, a1 , a2 , a3 , are drawn randomly and without replacement from the set
{1, 2, 3, . . . , 1000}. Three other numbers, b1 , b2 , b3 , are then drawn randomly and without
replacement from the remaining set of 997 numbers. Let p be the probability that, after
suitable rotation, a brick of dimensions a1 × a2 × a3 can be enclosed in a box of dimension
b1 × b2 × b3 , with the sides of the brick parallel to the sides of the box. If p is written as
a fraction in lowest terms, what is the sum of the numerator and denominator?
Answers
1.1 300
1.2 12
1.3 900
1.4 864
1.5 2880
1.6 560
1.7 115
1.8 4950
1.9 27720
1.10 360
1.11 630
1.12 40
1.13 448
23
OmegaLearn.org Chapter 1. Permutations and Combinations
1.7.1 420
1.7.2 1260
1.7.4 245
1.7.5 768
1.7.6 90
1.7.7 13
1.7.8 144
1.7.9 90
1.7.10 A
1.7.11 489
1.7.12 5
24
Chapter 2
Probability
Video Lecture
25
OmegaLearn.org Chapter 2. Probability
Example 2.1
In the array of 13 squares shown below, 8 squares are colored red, and the remaining 5
squares are colored blue. If one of all possible such colorings is chosen at random, the
probability that the chosen colored array appears the same when rotated 90 degrees
around the central square is n1 , where n is a positive integer. Find n.
Solution 2.1
The first step to any probability problem is finding the number of successful outcomes.
What must happen so that when the figure is rotated the same coloring ap-
pears?
The top L shape must look the same as the right L shape, which must look the same
as the bottom L shape, which must look the same as the left L shape. Essentially, all 4 L
shapes must be colored in the exact same way.
The number of total blue squares in all of the L’s is a multiple of 4 and since there are a
total of 5 blue squares, there must be 4 total blue squares amongst the L’s and the center
26
OmegaLearn.org Chapter 2. Probability
square must also be colored blue. Due to the identical coloration discovered earlier, we must
pick one of the squares for all the L’s and color them blue. There are 3 ways to do this.
2.2 Distinguishability
Example 2.2
I have cards numbered from 1 to 10. What is the probability I pick a pair of 2 different
cards that have an odd product?
Solution 2.2
This is a rather simple example however it demonstrates an important point about distin-
guishability in probability problems.
27
OmegaLearn.org Chapter 2. Probability
So does the order matter of the cards in the pair matter or not?
2
If the order of the cards in the pair does matter, then the probability is 20
= . If
90
9
2
the order of the cards in the pair does not matter, then the probability is 10
= .
45
9
Why are the probabilities are the same?
When dealing with ordered pairs, the number of successful and total pairs were multiplied by
2! so they would cancel out when dividing!
Remark 2.2.1
In probability problems, whether you decide to multiply for order or not is up to you as
both will give the same probability.
Example 2.3
The sum of 2 positive integers is 4. Find the probability that one of the integers is a 2.
Solution 2.3
There are 2 cases:
28
OmegaLearn.org Chapter 2. Probability
No! While there are only 2 cases, they both have different chances of happening.
There is only 1 way where both integers can be 2 however there are 2 ways one of the
integers is a 1 and the other is a 3 as we can flip them. The 2nd case is more likely.
1
There are a total of 3 cases of which 1 satisfies the condition so the probability is .
3
Remark 2.2.2
If you decide not to multiply for order when doing probability problems, make sure the
number of orderings is consistent across all cases. In the first problem, every pair had 2
orderings. The same would be true for groups of 5 for example as there are always 5!
ways to order the elements in the group. However, in the 2nd problem, the two cases
had different number of orderings so this doesn’t work.
Video Solution
Video Solution
29
OmegaLearn.org Chapter 2. Probability
Video Solution
Example 2.7
What is the probability that the product of 4 dice rolls is a multiple of 648?
Video Solution
30
OmegaLearn.org Chapter 2. Probability
Video Solution
Video Solution
Two 6-sided dice are rolled. What is the probability that the sum of the two num-
bers is even?
31
OmegaLearn.org Chapter 2. Probability
Video Solution
A deck of cards has only red cards and black cards. The probability of a randomly
chosen card being red is 13 . When 4 black cards are added to the deck, the probability of
choosing red becomes 41 . How many cards were in the deck originally?
Video Solution
Bob and Alice each have a bag that contains one ball of each of the colors blue, green,
orange, red, and violet. Alice randomly selects one ball from her bag and puts it into
Bob’s bag. Bob then randomly selects one ball from his bag and puts it into Alice’s bag.
What is the probability that after this process the contents of the two bags are the same?
Video Solution
Ms. Carr asks her students to read any 5 of the 10 books on a reading list. Harold
randomly selects 5 books from this list, and Betty does the same. What is the probability
that there are exactly 2 books that they both select?
Video Solution
Two different numbers are selected at random from {1, 2, 3, 4, 5} and multiplied together.
What is the probability that the product is even?
Video Solution
32
OmegaLearn.org Chapter 2. Probability
A fair 6-sided die is repeatedly rolled until an odd number appears. What is the
probability that every even number appears at least once before the first occurrence of
an odd number?
Video Solution
Two fair dice, each with at least 6 faces are rolled. On each face of each dice is printed
a distinct integer from 1 to the number of faces on that die, inclusive. The probability
of rolling a sum of 7 is 34 of the probability of rolling a sum of 10, and the probability
of rolling a sum of 12 is 12
1
. What is the least possible number of faces on the two dice
combined?
Video Solution
The numbers 1,2,. . . ,9 are randomly placed into the 9 squares of a 3×3 grid. Each
square gets one number, and each of the numbers is used once. What is the probability
that the sum of the numbers in each row and each column is odd?
Video Solution
Two cubical dice each have removable numbers 1 through 6. The twelve numbers
on the two dice are removed, put into a bag, then drawn one at a time and randomly
reattached to the faces of the cubes, one number to each face. The dice are then rolled
and the numbers on the two top faces are added. What is the probability that the sum
is 7?
Video Solution
33
OmegaLearn.org Chapter 2. Probability
Tina randomly selects two distinct numbers from the set {1, 2, 3, 4, 5}, and Sergio ran-
domly selects a number from the set {1, 2, ..., 10}. What is the probability that Sergio’s
number is larger than the sum of the two numbers chosen by Tina?
Video Solution
Let S be the set of permutations of the sequence 1, 2, 3, 4, 5 for which the first term is
not 1. A permutation is chosen randomly from S. The probability that the second term
is 2, in lowest terms, is a/b. What is a + b?
Video Solution
A box contains 5 chips, numbered 1, 2, 3, 4, and 5. Chips are drawn randomly one at
a time without replacement until the sum of the values drawn exceeds 4. What is the
probability that 3 draws are required?
Video Solution
Video Solution
34
OmegaLearn.org Chapter 2. Probability
A red ball and a green ball are randomly and independently tossed into bins num-
bered with the positive integers so that for each ball, the probability that it is tossed
into bin k is 2−k for k = 1, 2, 3.... What is the probability that the red ball is tossed into
a higher-numbered bin than the green ball?
Video Solution
Two fair dice, each with at least 6 faces are rolled. On each face of each dice is printed
a distinct integer from 1 to the number of faces on that die, inclusive. The probability
of rolling a sum if 7 is 34 of the probability of rolling a sum of 10, and the probability
of rolling a sum of 12 is 121
. What is the least possible number of faces on the two dice
combined?
Video Solution
Ang, Ben, and Jasmin each have 5 blocks, colored red, blue, yellow, white, and green;
and there are 5 empty boxes. Each of the people randomly and independently of the
other two people places one of their blocks into each box. The probability that at least
one box receives 3 blocks all of the same color is m
n
, where m and n are relatively prime
positive integers. What is m + n?
Video Solution
A fair 6-sided die is repeatedly rolled until an odd number appears. What is the
probability that every even number appears at least once before the first occurrence of
an odd number?
35
OmegaLearn.org Chapter 2. Probability
Video Solution
Three balls are randomly and independantly tossed into bins numbered with the posi-
tive integers so that for each ball, the probability that it is tossed into bin i is 2−i for
i = 1, 2, 3, .... More than one ball is allowed in each bin. The probability that the balls
end up evenly spaced in distinct bins is pq , where p and q are relatively prime positive
integers. (For example, the balls are evenly spaced if they are tossed into bins 3, 17, and
10.) What is p + q?
Video Solution
Additional Problems
Problem 2.6.19 (AMC 10/12)
An urn contains one red ball and one blue ball. A box of extra red and blue balls
lies nearby. George performs the following operation four times: he draws a ball from the
urn at random and then takes a ball of the same color from the box and returns those
two matching balls to the urn. After the four iterations the urn contains six balls. What
is the probability that the urn contains three balls of each color?
Answers
1
2.1 429
2
2.2 9
1
2.3 3
2.4 758
36
OmegaLearn.org Chapter 2. Probability
2.5 16
1
2.6 6
5
2.7 1296
2.8 107
2
2.9 3
1
2.6.1 2
2.6.2 12
1
2.6.3 3
25
2.6.4 63
2.6.5 0.7
1
2.6.6 20
2.6.7 17
1
2.6.8 14
2
2.6.9 11
2
2.6.10 5
3
2.6.11 16
1
2.6.12 5
2.6.13 162
1
2.6.14 3
2.6.15 17
2.6.16 471
1
2.6.17 20
2.6.18 55
1
2.6.19 5
37
Chapter 3
Casework
Video Lecture
38
OmegaLearn.org Chapter 3. Casework
3.1 Casework
Many counting or probability problems can be solved by dividing a problem into several cases
and calculating arrangements and probabilities for each case before summing them together.
Concept 3.1.1
When doing casework, always try to minimize the number of cases you have to deal with.
Solution 3.1
There are 5 items to be put in some of the 9 green and blue boxes, so we must choose 5 of
these 9 boxes to put the items into.
We can choose our cases based on the number of green and blue boxes we are selecting. The
cases are
Notice that this covers all the cases because it covers all possible number of blue boxes.
Clearly, 6 green boxes is impossible since we only have to select 5 of them to put items into.
Also, make sure to keep in mind that the boxes of the same color are identical.
For this case, how many ways are there to put 5 items into 3 blue and 2 green
boxes?
We can count this be seeing that we simply have to choose 3 of the items to place into the
39
OmegaLearn.org Chapter 3. Casework
blue boxes, and the other items will be put in green boxes. We don’t have to worry about
order of the items in the blue boxes
(or the green boxes) because the boxes of the same color
are identical. We can do this in 53 ways.
Case 2: 2 blue boxes, 3 green boxes Again, we do this by choosing 2 of the items to
put into
blue boxes, and the remaining 3 items will be put into green boxes. We can do this
in 52 ways.
Case 3: 1 blue boxes, 4 green boxes Out of the 5 items, we must choose 1 of them
for a blue box and the remaining 4 will go in green boxes. We can do this in 51 ways.
Case 4: 0 blue boxes, 5 green boxes Because all of the items must go in green boxes,
there is only 1 way to do this.
5 5 5 5×4×3 5×4 5 60 20 5
! ! !
+ + +1 = + + +1 = + + + 1 = 10 + 10 + 5 + 1 = 26
3 2 1 3! 2! 1! 6 2 1
Remark 3.1.2
For casework problems, pick one attribute to change and find the number of ways in each
of the cases. In the previous problem, this was the number of blue boxes. Sometimes,
the problem may require subcases.
40
OmegaLearn.org Chapter 3. Casework
Video Solution
Solution 3.2
For this problem, we will do casework on the number of clockwise and counterclockwise
moves. Say there are A clockwise moves and B counterclockwise moves.
What must happen for the bug to reach the starting vertex in 10 moves?
41
OmegaLearn.org Chapter 3. Casework
How many move orderings exist if the number of clockwise and counter-clockwise
moves differs by 0?
How many move orderings exist if the number of clockwise and counter-clockwise
moves differs by 3?
How many move orderings exist if the number of clockwise and counter-clockwise
moves differs by 6?
In total, we have 2 × 45 + 252 = 342 sucessful ways and 21 0 = 1024 total ways so the
probability is 1024
342
= 171
512
giving 683 .
Video Solution
42
OmegaLearn.org Chapter 3. Casework
Video Solution
Video Solution
Solution 3.3
We will break this into cases based on where the ambassadors are.
43
OmegaLearn.org Chapter 3. Casework
There are 5 ways as shown below. Blue represents the ambassadors and red represents
the advisors.
In addition, there are 4! ways to arrange the ambassadors amongst each other so we get a
total of 4! × 6 × 5 = 720 for this case.
Case 2: 3 are in adjacent even numbered chairs and the other is separated
In this case, there are also 6 possible configurations by rotating.
We can find the number of advisor placements for the 3 ambassadors sitting adjacent
and for the 1 ambassador sitting away separately and multiply.
How many ways are there to place the advisors around the 3 adjacent am-
bassadors?
By similar logic to earlier, there are 3 placements of the advisors. For the 1 ambassador
sitting alone, there is simply 2 choices for the advisor. In total, we have 6 possibilities for
where the advisor can sit.
How many ways are there to place the advisors around the ambassadors?
44
OmegaLearn.org Chapter 3. Casework
For each group of 2, there are 3 ways to place the advisors giving us a total of 3 × 3 = 9.
45
OmegaLearn.org Chapter 3. Casework
Example 3.8
What is the probability that the sum of two dice is 7 given that at least one of the dice
rolled a 6?
Solution 3.4
This is a standard conditional probability problem.
How many ways are there for the sum of two dice to be 7 and at least one
of the dice rolled to be a 6?
There are 2 ways: 61, 16. Any higher dice rolls along with 6 will exceed 7 and thus
not work.
How many ways with 2 dice are there such that at least one of them is 6?
If there is only one 6, then there are 5 choices for the other dice roll and 2 ways to order
the 2 dice rolls giving 5 × 2 = 10. If there are 2 6’s, there is just 1 way. This gives a total of 11.
2
Therefore, the probability is .
11
46
OmegaLearn.org Chapter 3. Casework
Solution 3.5
Note that Victor keeps drawing socks until he picks up a matching pair or red-green pair.
However, Victor returns the socks back to the drawer after every step. Eventually, he will
draw a matching pair or red-green pair so the problem is equivalent to Given that Victor
draws a matching pair or red-green pair, find the probability the pair is matching.
We already found that there are 9 matching pairs. In addition, since there are 2 red
and 2 green socks, there are 2 × 2 = 4 red-green pairs for a total of 13.
9
Therefore, our answer is
13
Solution 3.6
We can try to find the number of ways Hugo rolls a 5 and wins and the number of ways Hugo
wins as usual.
47
OmegaLearn.org Chapter 3. Casework
For example, one possible outcome is that the 4 players roll 5, 4, 2, 1. Another possi-
ble outcome is that the 4 players roll 4, 4, 3, 2 and the 2 players who rolled a 4 roll again
and get 6, 3. Note that these outcomes do not have the same probability of happening!
That’s why in this question it’s better to deal directly with probabilities and we can find
Probability Hugo Rolls a 5 and Wins
Probability Hugo Wins
. We’ll start by finding the probability Hugo rolls a 5 and wins.
Hugo can roll strictly higher than everyone else or tie with 1 or more people. Case 1:
Hugo rolls strictly higher than everyone
Firstly, the probability Hugo rolls a 5 is 16 . Next, the probability everyone else rolls a
4 or less is 64 . In total, we have ( 16 ) × ( 46 )3 = 1296
64
.
Again, the probability Hugo rolls a 5 is 16 . There are 3 ways to select the person Hugo ties
with and there is a 16 probability they roll a 5. Also, there is a 46 probability the other 2
people roll a 4 or lower. In total, we have 3 × ( 16 )2 × ( 46 )2 = 1296
48
.
This is just 1
2
by symmetry. In total, the probability Hugo ties with someone and wins is 24
1296
.
This is 1
3
by symmetry. In total, the probability Hugo ties with 2 other people and wins is 4
1296
.
48
OmegaLearn.org Chapter 3. Casework
Now, what is the probability Hugo wins (ignoring any other constraints)?
This is 1
4
by symmetry! Therefore, our answer is
64
+ 24
+ 4
+ 1
256 + 96 + 16 + 1 369 41
1296 1296 1296 4×1296
= = =
1
4
1296 1296 144
Coin A is flipped three times and coin B is flipped four times. What is the proba-
bility that the number of heads obtained from flipping the two fair coins is the same?
Video Solution
Two tour guides are leading six tourists. The guides decide to split up. Each tourist
must choose one of the guides, but with the stipulation that each guide must take at
least one tourist. How many different groupings of guides and tourists are possible?
Video Solution
Three fair six-sided dice are rolled. What is the probability that the values shown
on two of the dice sum to the value shown on the remaining die?
Video Solution
How many rearrangements of abcd are there in which no two adjacent letters are also
49
OmegaLearn.org Chapter 3. Casework
adjacent letters in the alphabet? For example, no such rearrangements could include
either ab or ba.
Video Solution
Call a positive integer an uphill integer if every digit is strictly greater than the previous
digit. For example, 1357, 89, and 5 are all uphill integers, but 32, 1240, and 466 are not.
How many uphill integers are divisible by 15?
Video Solution
Video Solution
Alice refuses to sit next to either Bob or Carla. Derek refuses to sit next to Eric.
How many ways are there for the five of them to sit in a row of chairs under these
conditions?
Video Solution
Three young brother-sister pairs from different families need to take a trip in a van.
These six children will occupy the second and third rows in the van, each of which has
three seats. To avoid disruptions, siblings may not sit right next to each other in the
same row, and no child may sit directly in front of his or her sibling. How many seating
arrangements are possible for this trip?
50
OmegaLearn.org Chapter 3. Casework
Video Solution
How many three-digit numbers are composed of three distinct digits such that one
digit is the average of the other two?
Video Solution
There are 10 people standing equally spaced around a circle. Each person knows
exactly 3 of the other 9 people: the 2 people standing next to her or him, as well as the
person directly across the circle. How many ways are there for the 10 people to split up
into 5 pairs so that the members of each pair know each other?
Video Solution
The nine delegates to the Economic Cooperation Conference include 2 officials from
Mexico, 3 officials from Canada, and 4 officials from the United States. During the
opening session, three of the delegates fall asleep. Assuming that the three sleepers were
determined randomly, the probability that exactly two of the sleepers are from the same
country is m
n
, where m and n are relatively prime positive integers. Find m + n.
Video Solution
Arjun and Beth play a game in which they take turns removing one brick or two adjacent
bricks from one ”wall” among a set of several walls of bricks, with gaps possibly creating
new walls. The walls are one brick tall. For example, a set of walls of sizes 4 and 2 can be
changed into any of the following by one move: (3, 2), (2, 1, 2), (4), (4, 1), (2, 2), or(1, 1, 2).
51
OmegaLearn.org Chapter 3. Casework
Arjun plays first, and the player who removes the last brick wins. For which start-
ing configuration is their a strategy that guarantees a win for Beth.
Video Solution
Let D(n) denote the number of ways of writing the positive integer n as a product
n = f1 · f2 · · · fk ,
where k ≥ 1, the fi are integers strictly greater than 1, and the order in which the factors
are listed matters (that is, two representations that differ only in the order of the factors
are counted as distinct). For example, the number 6 can be written as 6, 2 · 3, and 3 · 2,
so D(6) = 3. What is D(96)?
Video Solution
a1 x + b 1 y + c 1 z = 0
a2 x + b 2 y + c 2 z = 0
a3 x + b 3 y + c 3 z = 0
where each of the coefficients is either 0 or 1 and the system has a solution other than
x = y = z = 0. For example, one such system is {1x + 1y + 0z = 0, 0x + 1y + 1z =
0, 0x + 0y + 0z = 0} with a nonzero solution of {x, y, z} = {1, −1, 1}. How many such
systems are there? (The equations in a system need not be distinct, and two systems
containing the same equations in a different order are considered different.)
(A) 302 (B) 338 (C) 340 (D) 343 (E) 344
Video Solution
52
OmegaLearn.org Chapter 3. Casework
Each square in a 5 × 5 grid is either filled or empty, and has up to eight adjacent
neighboring squares, where neighboring squares share either a side or a corner. The grid
is transformed by the following rules: Any filled square with two or three filled neighbors
remains filled. Any empty square with exactly three filled neighbors becomes a filled
square. All other squares remain empty or become empty. A sample transformation is
shown in the figure below.
Initial Transformed
? ? ?
? ? ?
? ? ?
Initial Transformed
Video Solution
53
OmegaLearn.org Chapter 3. Casework
Additional Problems
Problem 3.3.16 (AIME)
Zou and Chou are practicing their 100-meter sprints by running 6 races against each
other. Zou wins the first race, and after that, the probability that one of them wins a
race is 23 if they won the previous race but only 13 if they lost the previous race. The
probability that Zou will win exactly 5 of the 6 races is m
n
, where m and n are relatively
prime positive integers. Find m + n.
How many different 4 × 4 arrays whose entries are all 1’s and -1’s have the property that
the sum of the entries in each row is 0 and the sum of the entries in each column is 0?
In a particular game, each of 4 players rolls a standard 6-sided die. The winner is
the player who rolls the highest number. If there is a tie for the highest roll, those
involved in the tie will roll again and this process will continue until one player wins.
Hugo is one of the players in this game. What is the probability that Hugo’s first roll
was a 5, given that he won the game?
Jason rolls three fair standard six-sided dice. Then he looks at the rolls and chooses a
subset of the dice (possibly empty, possibly all three dice) to reroll. After rerolling, he
wins if and only if the sum of the numbers face up on the three dice is exactly 7. Jason
always plays to optimize his chances of winning. What is the probability that he chooses
to reroll exactly two of the dice?
Each of the 12 edges of a cube is labeled 0 or 1. Two labelings are considered dif-
ferent even if one can be obtained from the other by a sequence of one or more rotations
and/or reflections. For how many such labelings is the sum of the labels on the edges of
54
OmegaLearn.org Chapter 3. Casework
Two different cubes of the same size are to be painted, with the color of each face
being chosen independently and at random to be either black or white. What is the
probability that after they are painted, the cubes can be rotated to be identical in
appearance?
A cube is constructed from 4 white unit cubes and 4 blue unit cubes. How many
different ways are there to construct the 2 × 2 × 2 cube using these smaller cubes? (Two
constructions are considered the same if one can be rotated to match the other.)
Answers
3.1 26
3.2 84
3.3 683
3.4 2220
3.5 84
3.6 148
3.7 520
2
3.8 11
9
3.9 13
41
3.10 144
55
OmegaLearn.org Chapter 3. Casework
35
3.3.1 128
3.3.2 62
5
3.3.3 24
3.3.4 2
3.3.5 6
8
3.3.6 63
3.3.7 28
3.3.8 96
3.3.9 112
3.3.10 13
3.3.11 139
3.3.12 (6, 2, 1)
3.3.13 112
3.3.14 338
3.3.15 22
3.3.17 90
41
3.3.18 144
7
3.3.19 36
3.3.20 20
147
3.3.21 1024
3.3.22 7
56
Chapter 4
Complementary Counting
Video Lecture
57
OmegaLearn.org Chapter 4. Complementary Counting
Example 4.1
How many subsets of the set {1, 2, 3, 4, 5, 6, 7, 8 , 9, 10} have at least 1 even number
and do not contain all of the elements?
Solution 4.1
We can find the total number of subsets and subtract the subsets which have no even
numbers and contain all of the elements. Note that both having no even numbers and
containing all of the elements cannot happen, so we don’t have to worry about overlap
between the subsets that don’t work.
There is only 1 subset that contains all of the elements (the original set).
If there are no even elements, then we simply have to pick some odd numbers from {1,
3, 5, 7, 9} for our subset.
Remember that each element has 2 choices (to be in subset or not in subset), so the
number of ways to form our subset from just odd numbers is 25 = 32.
Therefore in total, 1 + 32 = 33 ways don’t work.
Since there are 10 elements and each element has 2 choices, there are 210 = 1024 sub-
sets.
58
OmegaLearn.org Chapter 4. Complementary Counting
Video Solution
Video Solution
Solution 4.2
Let’s first begin by choosing the 4 distinct digits we will use.
59
OmegaLearn.org Chapter 4. Complementary Counting
From the condition, the 2nd digit must larger than the 1st digit, the 3rd digit must be
smaller than the 2nd digit, and the 4th digit must be larger than the 3rd digit. Essentially,
the 2nd and 4th digits are larger than their neighboring digits.
There are many ways, but we will do casework on the location of d. d must be either
the 2nd or 4th digit. If d is the 4th digit, then the 2nd digit must be c as it has to be
larger than the first and third digits. Then, there are 2 ways to flip a and b amongst the
1st and 3rd digits giving a total of 2 ways for this case (acbd, bcad). If d is the 2nd digit,
then the 4th digit has to be b or c. If the 4th digit is c, then we have 2 ways to order a
and b as before ((adbc, bdac). If the 4th digit is b, then the 3rd digit must be a in order
for it to be smaller than the 4th digit making the 1st digit c. This gives us 1 more way
(cdab). In total, we have 5 orderings. Multiplying the 5 orderings by 10
4
gives 1050 numbers.
Yes! If 0 is chosen as one of our digits, there are 93 ways to choose the remaining 3 digits.
0 in this case is the smallest digit and therefore must be a. Therefore, the number of invalid or-
derings are the ones that have a as the first digit. Looking at the possible
orderings above, we
find 2 such orderings. Therefore, the number of overcounted numbers is 93 ×2 = 84×2 = 168.
Video Solution
60
OmegaLearn.org Chapter 4. Complementary Counting
Example 4.6
You flip 10 fair coins. What is the probability of flipping more heads than tails?
Solution 4.3
One way to do this is with casework. However, this will require a lot of cases. Let’s try to
find a simpler solution with symmetry.
Keep in mind that the probability of flipping heads is the same as the probability of flipping
tails. Therefore, heads and tails are symmetric and the probability of flipping more heads
than tails is the same as the probability of flipping more tails then heads.
1
Is the answer 2
then?
Unfortunately, no because it’s also possible that an equal number of heads and tails and
flipped.
Note that P (Total) = 1 = P (More Heads) + P (More Tails) + P (Equal Heads and Tails)
and since P (More Heads) = P (More Tails) we can rewrite our equation as
. Once we find the value of P (Equal Heads and Tails), we can easily solve for P (More Heads)!
61
OmegaLearn.org Chapter 4. Complementary Counting
63
(1− 256 ) 193
and solving we get P (More Heads) = =
2
512
Solution 4.4
In this problem, casework would be extremely tedious. We will try to do a symmetry approach
as we did last time. However, Bernado can pick from the numbers 1 to 9 while Silvia can
only pick from the numbers 1 to 8.
How can we deal with the case one of Bernado’s numbers is a 9 separately?
Bernado’s number must be larger as his number will have 9 at the hundreds digit. Re-
gardless of Silvia’s largest number, her number can have a hundreds digit of at most 8 so will
always be smaller. Therefore, there is a 31 chance Bernado automatically wins.
2
In the 3
chance Bernado does not pick a 9, is there symmetry?
Yes! In the case where Bernado does not pick a 9, he is picking from the digits 1 to 8
so the situation is analagous to Silvia’s. Like in the previous problem, we write the equation
62
OmegaLearn.org Chapter 4. Complementary Counting
there is exactly 1 possible choice by Silvia that will result in the same number. Therefore,
this probability is 56
1
.
1
1− 56
We can now solve to get P (Bernado number larger) = 2
= 55
112
.
37
In total, amongst both cases, our probability is 1
+ 23 × 55
= 111
= .
3 112 168
56
63
OmegaLearn.org Chapter 4. Complementary Counting
Video Solution
How many four-digit positive integers have at least one digit that is a 2 or a 3?
Video Solution
Video Solution
Let (a, b, c, d) be an ordered quadruple of not necessarily distinct integers, each one
of them in the set 0, 1, 2, 3. For how many such quadruples is it true that a · d − b · c is
odd? (For example, (0, 3, 1, 1) is one such quadruple, because 0 · 1 − 3 · 1 = −3 is odd.)
Video Solution
How many strings of length 5 formed from the digits 0,1,2,3,4 are there such that
for each j ∈ {1, 2, 3, 4}, at least j of the digits are less than j? (For example, 02214
64
OmegaLearn.org Chapter 4. Complementary Counting
satisfies the condition because it contains at least 1 digit less than 1, at least 2 digits less
than 2, at least 3 digits less than 3, and at least 4 digits less than 4. The string 23404
does not satisfy the condition because it does not contain at least 2 digits less than 2.)
(A) 500 (B) 625 (C) 1089 (D) 1199 (E) 1296
Video Solution
Additional Problems
Problem 4.2.6
A strange coin lands heads 13 of the time, tails 13 of the time, and on its side 13 of
the time. What’s the probability that after 3 flips, more heads than tails were flipped?
Let N be the number of ordered pairs of nonempty sets A and B that have the following
properties:
A ∪ B = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12}, A ∩ B = ∅, The number of elements of A is
not an element of A, The number of elements of B is not an element of B. Find N .
65
OmegaLearn.org Chapter 4. Complementary Counting
Answers
4.1 991
4.2 189/256
4.3 902
4.4 882
25
4.5 32
193
4.6 512
37
4.7 56
4.2.1 240
4.2.2 5416
7
4.2.3 27
4.2.4 96
4.2.5 1296
4.2.8 882
4.2.9 461
66
Chapter 5
Video Lecture
67
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
Definition 5.0.1. The principle of inclusion and exclusion (PIE) is a counting technique
that computes the number of elements that satisfy at least one of several properties while
guaranteeing that elements satisfying more than one property are not counted twice.
Basically, we count the number of possibilities in 2 ”things” and subtract the duplicates.
Example 5.1
Find how many numbers from 1 to 100 (inclusive) that are divisible by 2 or 7.
Solution 5.1
To solve this problem, let’s first find how many numbers are divisible by 2 and how many
numbers are divisible by 7
Every 2nd number is divisible by 2, so all the numbers from 2 × 1 to 2 × 50 work. Therefore,
from 1 to 100 there are 50 numbers divisible by 2.
Are there any numbers overcounted between the multiples of 2 and the multiples
of 7?
68
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
Every 14th number is divisible by 14, so all of the numbers from 14 × 1 to 14 × 7 work.
Therefore, from 1 to 100 there are 7 numbers divisible by 14.
Therefore, in total, the number of numbers that are multiple of 2 or 7 are the number
of multiples of 2 plus the number of multiples of 7 minus the multiples of 14.
Video Solution
This is another problem we will solve using the principle of inclusion and exclusion and
the subsets formula we learned earlier.
Solution 5.2
How we can apply the Principle of Inclusion and Exclusion to this problem?
Notice how there are 5 even numbers, and we have to find how many subsets have at
69
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
most 4 even numbers. Similarly, there are 3 multiples of 3, and we have to find how many
elements have at most 2 multiples of 3.
We can see that there are fewer cases that don’t satisfy the condition, so it is better to use
complementary counting. We will first count the number of subsets that have more than 4
even numbers and have more than 2 multiple of 3.
Since there are 5 multiples of 2 from 1 to 10 (2, 4, 6, 8, 10), to have more than 4 multiples of
2 means having all of the multiples of 2 (only 1 way to choose this). From the remaining 5
numbers, there are 25 possible subsets. Therefore, in total, there are 1 × 25 = 25 subsets that
have more than 4 multiples of 2.
Since there are 3 multiples of 3 from 1 to 10 (3, 6, 9), to have more than 2 multiples
of 3 means having all of the multiples of 3 (only 1 ways to choose this). From the remaining
7 numbers, there are 27 possible subsets. By similar logic, in total, there will be 1 × 27 = 27
possible subsets.
How many subsets are we overcounting that have all of the even numbers
and multiples of 3 from 1 to 10?
For a subset to have all the multiples of 2 and 3, it must contain all the elements from 2, 3, 4,
6, 8, 9, 10 (only 1 way to choose this). From the remaining 3 numbers, there are 1 × 23 = 23
possible subsets.
Therefore, in total, the number of subsets that don’t satisfy our original condition is
27 + 25 − 23 = 128 + 32 − 8 = 152.
The total number of possible subsets of the original set of 10 numbers is 210 = 1024, so the
number of valid subsets is 1024 − 152 = 872
Remark 5.0.5
When the number of cases that don’t work is much less than the number of cases that
do work, it can often be helpful to use complementary counting along with PIE.
70
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
Video Solution
Solution 5.3
Let’s first find the number of ways to choose subsets so that B is contained entirely in A.
If we were just counting ways to choose a subset for A, there would be 26 ways as each
element could go in or not in A. Let’s try to do something similar in this case.
As seen in the picture, there are 3 regions where the elements can end up: in A and B, in A
but not B, or not in A or B (equivalent to in S − A). Therefore, for each element, we have 3
choices so 36 = 729 ways.
71
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
By PIE, we have 2 × 729 − 64 = 1394 valid cases. In total, there are 26 ways to pick
each of A and B so the probability is 1394
21 2
= 697
21 1
giving an answer of 697 + 2 + 11 = 710 .
In this formula, we count the number of possibilities in 3 ”things”, subtract the possibilities
that are duplicates in all 3 pairs of sets, and add back the number of duplicates in all 3
sets.
Example 5.6
How many numbers less than or equal to 193 are multiples of 2, 3, or 5?
Solution 5.4
72
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
First, let’s find how many numbers are divisible by 2, how many numbers are divisible by 3,
and how many numbers are divisible by 5.
Every 2nd number is divisible by 2, so all the numbers from 2 × 1 to 2 × 96 work. Therefore,
there are 96 numbers divisible by 2 less than or equal to 193
Every 3rd number is divisible by 3, so all the numbers from 3 × 1 to 3 × 64 work. Therefore,
there are 64 numbers divisible by 3 less than or equal to 193
Every 5th number is divisible by 5, so all the numbers from 5 × 1 to 5 × 38 work. Therefore,
there are 38 numbers divisible by 5 less than or equal to 193.
For this to happen, what values must the numbers be divisible by?
Every 6th number is divisible by 6, so all the numbers from 6 × 1 to 6 × 32 work. Therefore,
there are 32 numbers divisible by 6 less than or equal to 193
Every 10th number is divisible by 10, so all the numbers from 10 × 1 to 10 × 19 work.
Therefore, there are 19 numbers divisible by 10 less than or equal to 193
Every 15th number is divisible by 5, so all the numbers from 15 × 1 to 15 × 12 work. Therefore,
there are 12 numbers divisible by 15 less than or equal to 193.
Every 60th number is divisible by 60, so all the numbers from 60 × 1 to 60 × 3 work.
Therefore, there are 3 numbers divisible by 60 less than or equal to 193
73
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
Video Solution
Video Solution
74
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
Solution 5.5
Since we are asked to find the probability the grid does not have red 2 × 2 square, it’s a good
idea to use complementary counting and find how many colorings have at least 1 2x2 red
2 × 2 square.
Amongst all choices of a red 2x2 square, how many colorings exist?
There are four 2 × 2 squares as shown above. Then, there are 25 ways to color the rest of the
squares red or blue giving a total of 4 × 32 = 128. However, we are overcounting possibilities
when there are 2 red 2x2 squares.
Amongst all choices of 2 red 2x2 squares, how many colorings exist?
There are 4 cases as shown above. In the 4 cases on the top, there are 3 remaining squares
giving 23 possibilities. In the 2 cases on the right, there are 2 remaining squares giving
22 possibilities. In total, we have 4 × 23 + 2 × 22 = 40. However, we are undercounting
possibilities when there are 3 red 2x2 squares.
In each of the 4 cases shown above, there is 1 remaining square which has 2 choices so in
total, there are 4 × 21 = 8 ways in this case. We are overcounting possibilities when there are
4 red 2x2 squares.
75
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
Many states use a sequence of three letters followed by a sequence of three digits
as their standard license-plate pattern. Given that each three-letter three-digit arrange-
ment is equally likely, the probability that such a license plate will contain at least one
palindrome (a three-letter arrangement or a three-digit arrangement that reads the same
left to right as it does right to left) is m
n
, where m and n are relatively prime positive
integers. Find m + n.
Video Solution
Seven distinct pieces of candy are to be distributed among three bags. The red bag and
the blue bag must each receive at least one piece of candy; the white bag may remain
empty. How many arrangements are possible?
Video Solution
In how many ways can the sequence 1, 2, 3, 4, 5 be rearranged so that no three con-
secutive terms are increasing and no three consecutive terms are decreasing?
Video Solution
76
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
In how many ways can the sequence 1, 2, 3, 4, 5 be rearranged so that no three con-
secutive terms are increasing and no three consecutive terms are decreasing?
Video Solution
Additional Problems
Problem 5.1.5 (AIME)
Find the number of positive integers that are divisors of at least one of 1010 , 157 , 1811 .
In a five-team tournament, each team plays one game with every other team. Each team
m
has a 50% chance of winning any game it plays. (There are no ties.) Let be the
n
probability that the tournament will produce neither an undefeated team nor a winless
team, where m and n are relatively prime integers. Find m + n.
Call a set S product-free if there do not exist a, b, c ∈ S (not necessarily distinct) such
that ab = c. For example, the empty set and the set {16, 20} are product-free, whereas
the sets {4, 16} and {2, 8, 16} are not product-free. Find the number of product-free
subsets of the set {1, 2, 3, 4, ..., 7, 8, 9, 10}.
77
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
2. each of the n line segments intersects at least one of the other line segments at a
point other than an endpoint, all of the angles at P1 , P2 , . . . , Pn are congruent,
There are no regular 3-pointed, 4-pointed, or 6-pointed stars. All regular 5-pointed stars
are similar, but there are two non-similar regular 7-pointed stars. How many non-similar
regular 1000-pointed stars are there?
While watching a show, Ayako, Billy, Carlos, Dahlia, Ehuang, and Frank sat in that order
in a row of six chairs. During the break, they went to the kitchen for a snack. When
they came back, they sat on those six chairs in such a way that if two of them sat next
to each other before the break, then they did not sit next to each other after the break.
Find the number of possible seating orders they could have chosen after the break.
Answers
5.1 57
5.2 059
5.3 872
5.4 108
5.5 710
5.6 138
78
OmegaLearn.org Chapter 5. Principle of Inclusion and Exclusion
5.7 150
5.8 252
5.9 929
5.1.1 059
5.1.2 1932
5.1.3 32
5.1.4 32
5.1.5 435
5.1.6 49
5.1.7 252
5.1.9 461
5.1.10 90
79
Chapter 6
Video Lecture
80
OmegaLearn.org Chapter 6. Stars & Bars
Example 6.1
How many ways are there to distribute 8 identical computers amongst 3 students?
Solution 6.1
Make sure to keep in mind that the computers are identical. If the computers were not
identical, then we would just have 3 choices for each computer, so our answer would just be 38 .
However, when the computers are identical, only the number of computers each student has
matters. To start, let’s say we have 8 computers in a line: CCCCCCCC. Therefore, we must
divide these computers amongst 3 students.
How can we represent the 8 computers being divided amongst the 3 students?
We can think about having 3 groups. We can simply let the leftmost group be for stu-
dent one, the middle group for student 2, and the rightmost group for student 3 because only
the number of computers each student has matters, so ordering is irrelevant.
We can do this by just placing 2 bars somewhere in between the 8 C’s! Everything left of the
first bar goes to student 1, everything in the middle goes to student 2, and everything to
the right of the 2nd bar goes to student 3. Therefore, the number of ways to distribute the
computers is simply the number of ways to insert 2 bars in between 8 C’s. Examples:
We can think of having 10 slots (each slot for either a bar or a C). Then, we can choose 2 of
these slots for bars.
Therefore, the numbers of ways to select two slots out of the 10 slots (i.e. choose two
slots to put the two bars out of the 10 slots) is
10 10 × 9
!
= = 45
2 2
81
OmegaLearn.org Chapter 6. Stars & Bars
n+k−1
!
Remark 6.1.2
Stars and Bars is very useful, and can often be adapted based on situations. For example,
if each bin has to have at least 1 object in it we assign 1 object to each bin to start off,
and apply our formula to the remaining n − k objects and k distinguishable bins.
82
OmegaLearn.org Chapter 6. Stars & Bars
Example 6.2
7 astronauts are stranded in space with only 10 identical meals left. Every astronaut
must receive at least 1 meal or else, they will starve. How many ways are there to
distribute meals under this constraint?
Solution 6.2
This problem is very similar to the previous problem, except we now have an additional
constraint, so the formula won’t work. Let’s focus on the constraint, since it’s the most
complicated part of the problem.
How can we deal with the condition that every astronaut must get at least 1 meal?
If every astronaut must receive at least 1 meal and all the meals are identical, we can
simply pre-distribute 7 of the meals and give 1 to each astronaut. Notice that now, no matter
where the remaining meals are distributed, every astronaut will get 1 meal or more.
After 7 meals are distributed, only 3 remain. There is no constraint on who these 3 meals
can go to, so it can go to any of the 7 astronauts. To divide these 3 meals into 7 groups, we
can place 6 bars in between the 3 meals. Then, out of the 3+6=9 slots for meals and bars,
we must choose 6 of them for bars.
We can do this in 9
6
= 9
3
= 9×8×7
3!
= 9×8×7
6
= 84 .
83
OmegaLearn.org Chapter 6. Stars & Bars
Video Solution
Example 6.4
What’s the probability that the sum of the top faces on five regular 6-sided dice is 24?
Solution 6.3
Before we begin, note that each dice must be a value from 1 to 6. There is no way to use
stars and bars directly because it will not account for the constraint that the maximum of
each dice roll is a 6.
Let the default for each dice be a 6. Then the maximum score is 30, we must essen-
tially distribute 6 negatives to the 5 dice (-1, -1, -1, -1, -1, -1).
We can see that to distribute 6 negatives to 5 dice, we must have 4 bars to separate the
negatives into 5 groups for the dice. We then have 9 slots and must choose 4 of them for
bars. We can do this in 94 = 126 ways.
Because the minimum value of a dice roll is 1, each dice can only take at most 5 nega-
tives. Therefore, we are overcounting the possibilities where 1 dice receives 6 negatives.
There are 6 dice, so there are 6 choice for which dice will have all 6 negatives. From
here, we can calculate our final
answer by subtracting the 6 ways that result in 1 dice
receiving all 6 negatives from 94 , the number of ways to distribute 6 negatives to 5 dice so
that no dice gets more than 5 negatives.
This gives us 9
5
− 6 = 120
84
OmegaLearn.org Chapter 6. Stars & Bars
Example 6.5
How many ways are there to choose positive integers a, b, c, and d such that a+b+c+d <
13
Video Solution
Video Solution
• The second squirrel is fine with any non-negative even number of acorns.
• The third squirrel insists he must get an even number of acorns greater than or
equal to 4.
Video Solution
85
OmegaLearn.org Chapter 6. Stars & Bars
Example 6.8
How many ways are there for 7 people to sit in a line if 3 of them are enemies and refuse
to sit next to each other?
We will worry about the ordering about the 3 enemies and remaining 4 people later. For
now, let’s find the number of possible ways to choose 3 locations for the 7 enemies.
What must happen so that the enemies don’t sit next to each other?
Let w be the number of people left of the 1st enemy, let x be the number of people between
the 1st and 2nd enemies, let y be the number of people between the 2nd and 3rd enemies,
and let z be the number of people right of the 3rd enemy.
Firstly, since there are 4 people who are not enemies, we must have w + x + y + z = 4.
However, by our observation earlier, x and y must be at least 1.
How can we use stars and bars to find the number of solutions to this equation?
We start by assigning 1 star to x and y. Then, there are 5
3
solutions by stars and bars.
There are 3! ways to order the enemies and 4! ways to order the other people so our
answer is 53 × 3! × 4! = 1440
86
OmegaLearn.org Chapter 6. Stars & Bars
Solution 6.4
At most how many marbles can have a different colored right neighbor?
From the 5 red marbles, for the right marble to be a different color, it must be green.
Therefore, at most 5 red marbles can have a different colored right neighbor. For the m green
marbles, for the right marble to be a different color it must be red and since there are 5 red mar-
bles, at most 5 green marbles can have a different colored right neighbor. In total, we have 10.
From this, what is the maximum value of m, the total number of green marbles?
If there are an equal number of different colored and same colored right neighbors, there are
at most a total of 20 right neighbors. This means there can be at most 21 total marbles or
16 green marbles.
What must happen so the condition is satisfied with 5 red and 16 green marbles?
As discovered earlier, each red marble must be surrounded by a green marble on both
the right and left sides in order for each red marble to have a green marble to it’s right and
each green marble to have a red marble to it’s right.
This is similar to the previous problem. We are dividing the 16 green marbles into 6
groups. However, in order for red marbles to have green marble neighbors on both sides,
there must be at least 1 green marble in each group. After assigning 1 green marble to each
group,
we have 10 green marbles left to distribute amongst 6 groups. We can do this in
15
5
= 2 003 ways.
87
OmegaLearn.org Chapter 6. Stars & Bars
Solution 6.5
We will do complementary counting and first find the total number of flag configurations and
then subtract off the possibilities where all the flags are on 1 pole. We will first find how
many cases must be subtracted off.
There are 9 green flags and we much distribute the 10 blue flags such that there is at
least 1 blue flag between each green flag. We assign 8 blue flags to place in between the green
flags and distribute
the remaining 2 blue flags amongst the 10 possible locations by stars and
bars giving 2 . We will multiply this by 2 as there are 2 possible flagpoles where all of the
11
For the 2 flagpole case, how can we try and combine the flagpoles to make
it into a scenario similar to the previous one?
Imagine taking all the flags from 1st flagpole and all of the flags from the 2nd flagpole
and placing them on a third flagpole. Between the 2 flagpoles, place a red flag to distinguish
the flags between the 2 poles.
If there are no consecutive green flags on the original 2 flag poles, what must be
true about the green flags on the 3rd flag pole?
Like earlier, no 2 green flags can be consecutive. However, we can also separate the green flags
with a red flag! As seen in the diagram above, this corresponds to when there is a green flag
on bottom of the first flagpole and a green flag on the top of the 2nd flagpole, which is allowed!
88
OmegaLearn.org Chapter 6. Stars & Bars
Using the same stars and bars argument, how many ways are there to place the
blue and red flags in between the 9 green flags?
There are 10 regions around the green flags to place them in and 11 flags to place in
these groups. The middle 8 groups require a flag so we have
to distribute the remaining 3
flags amongst the 10 groups. By stars and bars, this is 123
. However, out of all the flags
that are either red or blue, we must choose 1 of them to be blue.
In total, we have 11 × 12
3
−2× 11
2
= 2420 − 110 = 2 310
newline
Alice has 24 apples. In how many ways can she share them with Becky and Chris
so that each of the three people has at least two apples?
Video Solution
When 7 fair standard 6-sided dice are thrown, the probability that the sum of the
numbers on the top faces is 10 can be written as
n
,
67
where n is a positive integer. What is n?
Video Solution
89
OmegaLearn.org Chapter 6. Stars & Bars
Pat is to select six cookies from a tray containing only chocolate chip, oatmeal, and
peanut butter cookies. There are at least six of each of these three kinds of cookies on
the tray. How many different assortments of six cookies can be selected?
Video Solution
Let D(n) denote the number of ways of writing the positive integer n as a product
n = f1 · f2 · · · fk ,
where k ≥ 1, the fi are integers strictly greater than 1, and the order in which the factors
are listed matters (that is, two representations that differ only in the order of the factors
are counted as distinct). For example, the number 6 can be written as 6, 2 · 3, and 3 · 2,
so D(6) = 3. What is D(96)?
Video Solution
Additional Problems
Problem 6.5.5 (Omega Learn)
Problem 6.5.6
90
OmegaLearn.org Chapter 6. Stars & Bars
The expression
(x + y + z)2006 + (x − y − z)2006
is simplified by expanding it and combining like terms. How many terms are in the
simplified expression?
A fair die is rolled four times. The probability that each of the final three rolls is
at least as large as the roll preceding it may be expressed in the form m
n
where m and n
are relatively prime positive integers. Find m + n.
Problem 6.5.9
In how many ways can 8 students and 3 teachers sit in the front row if between every
pair of teachers, there must be at least 2 students?
A fair die is rolled four times. The probability that each of the final three rolls is
at least as large as the roll preceding it may be expressed in the form m
n
where m and n
are relatively prime positive integers. Find m + n.
Problem 6.5.11
The wheel shown below consists of two circles and five spokes, with a label at each
point where a spoke meets a circle. A bug walks along the wheel, starting at point A. At
every step of the process, the bug walks from one labeled point to an adjacent labeled
point. Along the inner circle the bug only walks in a counterclockwise direction, and
along the outer circle the bug only walks in a clockwise direction. For example, the bug
could travel along the path AJABCHCHIJA, which has 10 steps. Let n be the number
of paths with 15 steps that begin and end at point A. Find the remainder when n is
divided by 1000.
91
OmegaLearn.org Chapter 6. Stars & Bars
J
I A F
B E
C D
H G
Answers
6.1 45
6.2 84
6.3 14
6.4 120
6.5 495
6.6 210
6.7 36
6.9 003
6.10 310
6.5.1 190
6.5.2 84
6.5.3 28
6.5.4 112
92
OmegaLearn.org Chapter 6. Stars & Bars
6.5.5 210
6.5.6 286
6.5.8 79
6.5.9 35 × 11!
6.5.10 79
6.5.11 4
93
Chapter 7
Combinatorial Identities
Video Lecture
94
OmegaLearn.org Chapter 7. Combinatorial Identities
Theorem
7.1.1
n
k
= n
n−k
Proof. nk represents the number of ways to choose k objects from n objects whereas n−k n
represents the number of ways to not choose n − k objects from n objects. Therefore, the 2
quantities must be equal!
For each object, we have 2 choices: choose it, don’t choose it. Therefore, the total number of
ways is 2n .
How many ways are there to select 0 objects? 1 object? 2 objects? n ob-
jects?
There are n
0
ways to select 0 objects, n
1
ways to select 1 object, n
2
ways to select
2 objects, . . . , n
n
to select n objects.
By summing this up, we get that the number of ways to choose any number of objects
is ! ! !
n n n
+ + ··· +
0 1 n
which must be equal to 2n !
95
OmegaLearn.org Chapter 7. Combinatorial Identities
k=0 k m
Proof. Suppose we have n students of which we must select some of them to go on the field trip.
One of the students Bob is sick and can’t go. Out of all possible subsets of the remaining
n − 1 students, say a of the subsets have an even number of people and b of them have an
odd number of people.
Later, Bob recovers and can is now going on the field trip. In terms of a
and b, how many subsets of all n people have an odd number of people and an
even number of people?
All of the a subsets that originally had an even number of people now have an odd number
of people. All of the b subsets that originally had an odd number of people now have an even
number of people.
In total, amongst all subsets of n people in terms of a and b, how many have an
odd number of people and how many have an even number of people?
By adding up the quantities from the previous 2 scenarios, we get a + b subsets have
an odd number of people and b + a subsets have an even number of people. They are the
same!
96
OmegaLearn.org Chapter 7. Combinatorial Identities
m+n
! ! ! ! ! ! !
n m n m n m
+ + ··· + =
0 r 1 r−1 r 0 r
.
Using this logic, can you find another formula for the number of ways to select r
fruits?
We can have r oranges and 0 bananas, r − 1 oranges and 1 banana, r − 2 oranges and
2 bananas, . . . , 0 orange and r bananas. Using the same logic as above, we get
! ! ! ! ! !
n m n m n m
+ + ··· +
0 r 1 r−1 r 0
. However, m+n
r
also counts the number of ways to choose r fruits so these quantities must
be equal!
97
OmegaLearn.org Chapter 7. Combinatorial Identities
Remark 7.2.2
If you understand the logic behind this proof, applying Vandermonde’s will become
intuitive and you will not have to memorize this identity.
i=0 i k
Video Solution
is divided by 1000.
Video Solution
98
OmegaLearn.org Chapter 7. Combinatorial Identities
n+1
! ! !
n n
+ =
r r+1 r+1
Proof. Imagine you have n + 1 people and you must choose k + 1 leaders.
99
OmegaLearn.org Chapter 7. Combinatorial Identities
If Bob, one of the n + 1 people, is a leader, how many ways are there to choose
the other r leaders from the remaining n people?
This is n
r
.
If Bob is not a leader, how many ways are there to select the r + 1 leaders
from the remaining n people?
This is n
r+1
.
Now, we have counted the number of ways to select r + 1 people in 2 different ways!
Equating, we get
n+1
! ! !
n n
+ =
r r+1 r+1
.
100
OmegaLearn.org Chapter 7. Combinatorial Identities
k+1 n+1
! ! ! !
k n
+ + ··· + =
k k k k+1
Proof.
Again, like earlier, we will count some quantity in 2 ways to prove this.
Now, assume the n + 1 people are ranked in order of skill level from 1 to n + 1.
If the lowest ranked leader has a rank of k + 1, how many ways to choose
the other leaders?
There are k people who have a higher ranking so k
k
.
If the lowest ranked leader has a rank of k + 2, how many ways to choose
the other leaders?
There are k + 1 people who have a higher ranking so k+1
k
.
We can continue with this all the way until the end.
If the lowest ranked leader has a rank of n + 1, how many ways to choose
the other leaders?
There are n + 1 people who have a higher ranking so n
k
.
k+1
! ! !
k n
+ + ··· +
k k k
101
OmegaLearn.org Chapter 7. Combinatorial Identities
Remark 7.3.5
This is derived by simply applying hockey stick theorem twice and subtracting. See if
you can prove it!
Solution 7.1
Among the 75 book slots, we must choose 3 of them to be math textbooks.
How many ways can the first box hold the math books? 2nd box? 10th box?
The first box has only 3
3
ways to hold the textbooks. The 2nd box has 4 slots for textbooks
so there 4
3
ways it can hold the textbooks. This continues all the way until the 10th box
which has 10
3
ways to hold the 3 math textbooks.
102
OmegaLearn.org Chapter 7. Combinatorial Identities
Solution 7.2
To find the average value of the least elements over all subsets, let’s first find the sum of the
least elements across all subsets. To do this, we will find the number of subsets with each
element as it’s least element.
We
must
choose 999 more elements from the 2014 remaining elements, which can be done in
2014
999
ways.
Based on this, what is the total sum of least elements across all the sets?
We get
2014 2013 999
! ! !
1× +2× + · · · + 1016 ×
999 999 999
. This reminds us of the hockey stick identity. However, the coefficients make it so that we
can’t apply it directly.
How can we divide the sum so that we can apply the hockey stick identity?
103
OmegaLearn.org Chapter 7. Combinatorial Identities
After subtracting this from our original sum, what are we left with?
As shown above, we can continue this logic! We end up with 2015
1000
+ 2014
1000
+· · ·+ 1000
1000
= 2016
1001
by Hockey Stick Identity again.
(2016
1001)
2016!
There are 2015
possible subsets so to find the average value we divide = 1001!×1015!
=
1000 (2015
1000)
2015!
1000!×1015!
288
2016
=
1001
143
Remark 7.3.7
These identities can be helpful in combinatorics problem, but their applications may not
always be straightforward, so a good approach to many combinatorics problem may be
to just manipulate expressions.
104
OmegaLearn.org Chapter 7. Combinatorial Identities
A choir director must select a group of singers from among his 6 tenors and 8 basses. The
only requirements are that the difference between the number of tenors and basses must
be a multiple of 4, and the group must have at least one singer. Let N be the number of
different groups that could be selected. What is the remainder when N is divided by
100?
Video Solution
A choir director must select a group of singers from among his 6 tenors and 8 basses. The
only requirements are that the difference between the number of tenors and basses must
be a multiple of 4, and the group must have at least one singer. Let N be the number of
groups that could be selected. What is the remainder when N is divided by 100?
Video Solution
7 11 8 6 4 5 9 12 1 13 10 2 3
(A) 4082 (B) 4095 (C) 4096 (D) 8178 (E) 8191
Video Solution
105
OmegaLearn.org Chapter 7. Combinatorial Identities
Additional Problems
Problem 7.4.4 (AIME)
There are two distinguishable flagpoles, and there are 19 flags, of which 10 are identical
blue flags, and 9 are identical green flags. Let N be the number of distinguishable
arrangements using all of the flags in which each flagpole has at least one flag and no
two green flags on either pole are adjacent. Find the remainder when N is divided by
1000. (Solve this problem using Vandermonde’s Identity)
Answers
7.1 35(original81)
7.2 4
7.3 11591
7.4 431
288
7.4 143
7.4.1 95
7.4.2 95
7.4.3 8178
7.4.4 310
106
Chapter 8
Geometric Counting
Video Lecture
107
OmegaLearn.org Chapter 8. Geometric Counting
Example 8.1
How many triangles can be formed by connecting vertices in a regular octagon?
Solution 8.1
You could solve this by casework on what type of triangle you will select. However, there is a
very smart and clever solution.
This is a very important question to ask because it’s not always true. For example, if
3 points are collinear (you can draw a line through all 3 of them) then the answer would
actually be no, and we would have to subtract the extra cases. Luckily, in an octagon, no 3
points are collinear, so all combinations of 3 vertices do indeed form a triangle.
8 8×7×6 8×7×6
!
= = = 56
3 3! 6
108
OmegaLearn.org Chapter 8. Geometric Counting
Example 8.4
How many rectangles are in a 3x5 grid of rectangles?
Solution 8.2
This is another problem that can be solved by tedious casework but has a very slick solution.
4 points? Not quite because 4 points don’t necessarily make a rectangle. 2 vertical lines and
2 horizontal lines define a rectangle as shown in the picture below. In other words, any 2
vertical lines and horizontal lines in this grid will form a rectangle.
109
OmegaLearn.org Chapter 8. Geometric Counting
Theorem 8.2.1
The general formula for the number of rectangles of all sizes in a rectangular grid of size
m × n is
m+1 n+1
! !
×
2 2
.
Remark 8.2.2
Each combination of two horizontal lines and two vertical lines creates a unique rectangle.
We have
m+1
!
2
ways to choose two horizontal lines and
n+1
!
110
OmegaLearn.org Chapter 8. Geometric Counting
Example 8.5
How many squares of all sizes can be formed from a 4x4 grid of unit squares?
Solution 8.3
Keep in mind that the answer is not 16 because we can’t just count unit squares!
What’s the easiest and most systematic way to count all possible squares?
We can break the problem down into 1x1, 2x2, 3x3, and 4x4 squares.
Notice how there are 3 possible choices of rows and 3 possible choices of columns to form a
2x2 square. In total, there are 3 × 3 = 9 possible 2x2 squares since each choice of two rows
and two columns produces a 2x2 square.
Notice how there are 2 possible choices of rows and 2 possible choices of columns to form a
111
OmegaLearn.org Chapter 8. Geometric Counting
3x3 square. In total, there are 2 × 2 = 4 possible 3x3 squares since each choice of two rows
and two columns produces a 3x3 square.
Video Solution
Video Solution
Video Solution
112
OmegaLearn.org Chapter 8. Geometric Counting
Video Solution
Video Solution
113
OmegaLearn.org Chapter 8. Geometric Counting
Example 8.11
A rabbit is walking in a coordinate plane and has to get from (0,0) to the carrot at the
point (5,5). If the rabbit can only move 1 unit up or 1 unit right on any given move,
how many ways are there for the rabbit to get to the carrot?
Solution 8.4
This is yet another problem that is tedious to solve with casework. Instead, let’s find a
simpler way to solve this problem. Lets denote a right move by R and an up move by U.
How many right and up moves does the rabbit need to get to the carrot?
Because it’s going from (0,0) to (5,5), it needs 5 right moves and 5 up moves. Therefore,
we just need to count the number of ways to make 5 right moves and 5 up moves in any order.
How can we represent the number of ways to make 5 right moves and 5 up
moves (in any order)?
Theorem 8.4.1
The number of ways to get from (0,0) to a point (m,n) moving only up and right is
m+n
!
Remark 8.4.2
Imagine any arrangement string of m R’s and n U’s. Each string would correspond to a
unique path, so to count this, we can use the word rearrangement formula.
114
OmegaLearn.org Chapter 8. Geometric Counting
Example 8.12
How many ways to go from (0, 0) to (5, 6) moving only right or up if you cannot visit
all of (1, 2), (3, 4), and (5, 5) because there is a monster that will eat you if you visit all
3 locations?
Video Solution
Video Solution
115
OmegaLearn.org Chapter 8. Geometric Counting
Video Solution
Solution 8.5
116
OmegaLearn.org Chapter 8. Geometric Counting
How can use the fact that every path goes through the same colors?
We can construct 2 paths that are nearly identical and perhaps find some squares that
must be the same color. Consider the 2 paths shown below.
They are the same except for 2 steps (green and pink). Both of those paths must pass through
3 blue, 3 red, and 3 white squares. However, because they pass through the same colored
squares for the 8 squares their paths share, squares A and B must be the same color.
Why does this imply each diagonal must be colored the same color throughout?
We can apply the same logic: constructing 2 nearly identical paths that differ by an adjacent
diagonal square for all diagonally adjacent squares. This gives us that all the squares in a
diagonal must be the same color.
Now, the problem is equivalent to choosing 3 of the 9 diagonals to be each of red, white, and
blue.
117
OmegaLearn.org Chapter 8. Geometric Counting
A set of 25 square blocks is arranged into a 5×5 square. How many different combinations
of 3 blocks can be selected from that set so that no two are in the same row or column?
Video Solution
Video Solution
How many ways are there to place 3 indistinguishable red chips, 3 indistinguishable
blue chips, and 3 indistinguishable green chips in the squares of a 3 × 3 grid so that
no two chips of the same color are directly adjacent to each other, either vertically or
horizontally.
Video Solution
Each face of a regular tetrahedron is painted either red, white, or blue. Two color-
ings are considered indistinguishable if two congruent tetrahedra with those colorings can
118
OmegaLearn.org Chapter 8. Geometric Counting
be rotated so that their appearances are identical. How many distinguishable colorings
are possible?
Video Solution
Additional Problems
Problem 8.5.5 (AMC)
A game board consists of 64 squares that alternate in color between black and white.
The figure below shows square P in the bottom row and square Q in the top row. A
marker is placed at P. A step consists of moving the marker onto one of the adjoining
white squares in the row above. How many 7-step paths are there from P to Q? (The
figure shows a sample path.)
119
OmegaLearn.org Chapter 8. Geometric Counting
Given that there are six different colors of triangles from which to choose, how many
distinguishable large equilateral triangles may be formed?
120
OmegaLearn.org Chapter 8. Geometric Counting
Answers
8.1 56
8.4 90
8.5 30
8.6 110
8.7 8
8.8 19
8.9 81
8.10 810
8.11 252
8.12 408
8.13 625
8.14 28
8.15 1680
121
OmegaLearn.org Chapter 8. Geometric Counting
8.5.1 600
5
8.5.2 7
8.5.3 36
8.5.4 15
8.5.6 336
8.5.7 248
122
Chapter 9
Geometric Probability
Video Lecture
123
OmegaLearn.org Chapter 9. Geometric Probability
1. Try a few examples for the different cases, make sure to always mark the extreme cases
Remark 9.0.2
Geometric probability can be useful when the number of possible outcomes is infinite.
Example 9.1
Alex and Bob arrive at a random time from 3 PM to 4 PM. They will each wait for 15
minutes before leaving. What is the probability that they will meet?
Solution 9.1
Alex and Bob’s arrival time must be within 15 minutes of each other. In other words,
Alex can not arrive more than 15 minutes after Bob and Bob can not arrive more than 15
minutes after Alex.
In order to be within 15 minutes of Alex’s time, Bob must arrive between 3 and 3:30.
If Alex arrives at 3:30, Bob must arrive from 3:15 to 3:45. If Alex arrives at 3:45, Bob
must arrive from 3:30 to 4. If Alex arrives at 4, Bob must arrive from 3:45 to 4.
124
OmegaLearn.org Chapter 9. Geometric Probability
Using this, we draw a picture. The x-axis represents Alex’s arrival time and the y-axis
represents Bob’s arrival time. Black rectangles are shown for the 4 cases discussed and try to
find the area of the region where they meet.
How can we generalize this for all possible arrival times for Alex?
The green line denotes the points where Bob arrives at the same time as Alex. As dis-
cussed, Bob can arrive up to 15 minutes before or after.
We then construct the blue region as shown showing all possible valid regions.
If the side length of the square is 1, what is the area of the blue region?
To do this, we will subtract off the areas of the 2 red triangles. Each of them has an
7
area of 12 × 34 × 34 = 32
9
giving a total area of 16
9
. Therefore, the area of the blue region is
16
and since the area of the square is 1 (represents total probability), this is also the probability
they will meet.
Video Solution
125
OmegaLearn.org Chapter 9. Geometric Probability
Video Solution
126
OmegaLearn.org Chapter 9. Geometric Probability
Video Solution
127
OmegaLearn.org Chapter 9. Geometric Probability
Solution 9.2
We break this into 3 cases:
There is 14 chance that the 2nd point is on the same side as the 1st point, so this case
has a 14 chance of happening. Let x and y be the distances of those 2 points from a vertex.
The difference between x and y must be bigger than 12 .
Out of 4 possible sides, 2 sides for the 2nd point result in it being on an adjacent side
to the 1st point giving us a probability of 12 that this case happens.
How can we find the area of points that satisfy this region?
This is the equation for a circle! Therefore, all points above the quarter circle shown
will work as shown. The quarter circle’s area is 14 × ( 12 )2 π = 16
π
. The area of the blue region
that works (and thus the probability the points are more than 12 away from each in other) is
1 − 16
π
in this case.
128
OmegaLearn.org Chapter 9. Geometric Probability
Out of 4 possible sides for the 2nd point, only 1 will result in it being on an opposite
side. Therefore, the probability this case happens is 14 .
1
Why are the points always more than 2
away in this case?
As shown, the distance between the 2 points will always be greater than 1 and thus 1
2
by the pythagorean theorem.
Video Solution
Alex and Bob decide to meet at the park between 3 and 4 pm. They both will ar-
rive at a random time during the hour but will only wait up to 15 minutes for the other
person and then leave the park. What is the probability that they will meet?
Video Solution
129
OmegaLearn.org Chapter 9. Geometric Probability
Video Solution
Real numbers between 0 and 1, inclusive, are chosen in the following manner. A
fair coin is flipped. If it lands heads, then it is flipped again and the chosen number is 0
if the second flip is heads, and 1 if the second flip is tails. On the other hand, if the first
coin flip is tails, then the number is chosen uniformly at random from the closed interval
[0, 1]. Two random numbers x and y are chosen independently in this manner. What is
the probability that |x − y| > 12 ?
Video Solution
Additional Problems
Problem 9.2.4 (AIME)
Two mathematicians take a morning coffee break each day. They arrive at the cafeteria
independently, at random times between 9 a.m. and 10 a.m., and stay for exactly m
minutes. The probability
√ that either one arrives while the other is in the cafeteria is
40%, and m = a − b c, where a, b, and c are positive integers, and c is not divisible by
the square of any prime. Find a + b + c.
130
OmegaLearn.org Chapter 9. Geometric Probability
not touch diagonal AC is m/n, where m and n are relatively prime positive integers.
Find m + n.
Answers
7
9.1 16
3
9.2 4
9.3 π
4
− 1
2
= 0.29
9.4 68
9.5 59
7
9.2.1 16
5
9.2.2 7
7
9.2.3 12
9.2.5 817
131
Chapter 10
Expected Value
Video Lecture
132
OmegaLearn.org Chapter 10. Expected Value
xi · P (xi )
X
where xi are the possible values of X and P (xi ) is the probability they occur.
Basically the expected value is just the weighted sum of probabilities of events
Remark 10.0.3
Often times, in finding the expected value, we can just look for symmetry instead
of summing each individual probability times number. For example, to calculate the
expected value of a dice roll rather than evaluating
1 1 1 1 1 1
· 1 + · 2 + · 3 + · 4 + · 5 + · 6 = 3.5
6 6 6 6 6 6
we can see that since all rolls from 1 to 6 are equally likely, the expected value is just
the average roll which is just the average of the 2 middle terms which is 3.5. (See the
arithmetic sequences section)
133
OmegaLearn.org Chapter 10. Expected Value
Basically, what this means is that the total expected value of n events is just the sum of
the expected values of each individual event.
Remark 10.0.5
This theorem is powerful as it allows us to find the expected value of the individual
events rather than of the whole thing at once.
Video Solution
Video Solution
134
OmegaLearn.org Chapter 10. Expected Value
Mark is playing a game at the casino. The game costs $100. There is a 5% chance he
will win $500 and a 20% chance he will win $250 and 75% chance he will win $0. What
is the expected value for the money he will lose?
Video Solution
A player pays $5 to play a game. A die is rolled. If the number on the die is odd,
the game is lost. If the number on the die is even, the die is rolled again. In this case
the player wins if the second number matches the first and loses otherwise. How much
should the player win if the game is fair? (In a fair game the probability of winning times
the amount won is what the player should pay.)
Video Solution
Additional Problems
Problem 10.1.3 (AMC 12)
A school has 100 students and 5 teachers. In the first period, each student is tak-
ing one class, and each teacher is teaching one class. The enrollments in the classes are
50, 20, 20, 5, and 5. Let t be the average value obtained if a teacher is picked at random
and the number of students in their class is noted. Let s be the average value obtained if
a student was picked at random and the number of students in their class, including the
student, is noted. What is t − s?
For each permutation a1 , a2 , a3 , · · · , a10 of the integers 1, 2, 3, · · · , 10, form the sum
135
OmegaLearn.org Chapter 10. Expected Value
Answers
10.1 2.2
2
10.2 3
10.1.1 25
10.1.2 60
10.1.3 −13.5
10.1.4 058
136
Chapter 11
Recursion
Video Lecture
137
OmegaLearn.org Chapter 11. Recursion
2. Recursion Equation: Look at the different cases for any general value of n (ex.
whether the last digit is 0 or 1)
• If you are stuck, you can try a few small cases and look for a pattern
Remark 11.0.2
Note that you can get the answer to many recursion problems by using engineering
induction (see the meta-solving section).
138
OmegaLearn.org Chapter 11. Recursion
Video Solution
• The cube immediately on top of a cube with edge-length k must have edge-length
at most k + 2.
Let T be the number of different towers than can be constructed. What is the
remainder when T is divided by 1000?
Video Solution
Video Solution
139
OmegaLearn.org Chapter 11. Recursion
Video Solution
Problem 11.1.2
Arjun and Beth play a game in which they take turns removing one brick or two
adjacent bricks from one ”wall” among a set of several walls of bricks, with gaps possibly
creating new walls. The walls are one brick tall. For example, a set of walls of sizes 4 and
2 can be changed into any of the following by one move: (3, 2), (2, 1, 2), (4), (4, 1), (2, 2),
or (1, 1, 2).
, , ,...
Arjun plays first, and the player who removes the last brick wins. For which starting
configuration is there a strategy that guarantees a win for Beth?
(A) (6, 1, 1) (B) (6, 2, 1) (C) (6, 2, 2) (D) (6, 3, 1) (E) (6, 3, 2)
Video Solution
Additional Problems
Problem 11.1.3 (AMC 10)
Square ABCD in the coordinate plane has vertices at the points A(1, 1), B(−1, 1), C(−1, −1),
and D(1, −1). Consider the following four transformations:
140
OmegaLearn.org Chapter 11. Recursion
There are 210 = 1024 possible 10-letter strings in which each letter is either an A
or a B. Find the number of such strings that do not have more than 3 adjacent letters
that are identical.
The figure below shows a ring made of six small sections which you are to paint on a wall.
You have four paint colors available and you will paint each of the six sections a solid
color. Find the number of ways you can choose to paint the sections if no two adjacent
sections can be painted with the same color.
141
OmegaLearn.org Chapter 11. Recursion
Let △A0 B0 C0 be a triangle whose angle measures are exactly 59.999◦ , 60◦ , and 60.001◦ .
For each positive integer n, define An to be the foot of the altitude from An−1 to line
142
OmegaLearn.org Chapter 11. Recursion
Bn−1 Cn−1 . Likewise, define Bn to be the foot of the altitude from Bn−1 to line An−1 Cn−1 ,
and Cn to be the foot of the altitude from Cn−1 to line An−1 Bn−1 . What is the least
positive integer n for which △An Bn Cn is obtuse?
A mail carrier delivers mail to the nineteen houses on the east side of Elm Street.
The carrier notices that no two adjacent houses ever get mail on the same day, but that
there are never more than two houses in a row that get no mail on the same day. How
many different patterns of mail delivery are possible?
Answers
11.1 65
11.2 458
11.3 129
11.1.1 24
11.1.2 (6, 2, 1)
11.1.3 238
11.1.4 548
11.1.5 732
11.1.6 486
11.1.7 15
11.1.8 351
11.1.9 461
143
Chapter 12
Probability States
Video Lecture
144
OmegaLearn.org Chapter 12. Probability States
2. Write your equations for the probability of winning from each of these positions in
terms of the other states
Remark 12.0.3
Often times in state problems when you have a lot of states, you may have to write a
state recursion equation.
145
OmegaLearn.org Chapter 12. Probability States
Video Solution
Video Solution
Video Solution
146
OmegaLearn.org Chapter 12. Probability States
Amelia has a coin that lands heads with probability 13 , and Blaine has a coin that
lands on heads with probability 25 . Amelia and Blaine alternately toss their coins until
someone gets a head; the first one to get a head wins. All coin tosses are independent.
Amelia goes first. The probability that Amelia wins is pq , where p and q are relatively
prime positive integers. What is q − p?
Video Solution
Debra flips a fair coin repeatedly, keeping track of how many heads and how many
tails she has seen in total, until she gets either two heads in a row or two tails in a row,
at which point she stops flipping. What is the probability that she gets two heads in a
row but she sees a second tail before she sees a second head?
Video Solution
A frog sitting at the point (1, 2) begins a sequence of jumps, where each jump is
parallel to one of the coordinate axes and has length 1, and the direction of each jump
(up, down, right, or left) is chosen independently at random. The sequence ends when
the frog reaches a side of the square with vertices (0, 0), (0, 4), (4, 4), and (4, 0). What is
the probability that the sequence of jumps ends on a vertical side of the square?
Video Solution
Lily pads 1, 2, 3, . . . lie in a row on a pond. A frog makes a sequence of jumps starting on
pad 1. From any pad k the frog jumps to either pad k + 1 or pad k + 2 chosen randomly
with probability 12 and independently of other jumps. The probability that the frog visits
147
OmegaLearn.org Chapter 12. Probability States
Video Solution
In a small pond there are eleven lily pads in a row labeled 0 through 10. A frog
is sitting on pad 1. When the frog is on pad N , 0 < N < 10, it will jump to pad N − 1
with probability 10
N
and to pad N + 1 with probability 1 − 10
N
. Each jump is independent
of the previous jumps. If the frog reaches pad 0 it will be eaten by a patiently waiting
snake. If the frog reaches pad 10 it will exit the pond, never to return. What is the
probability that the frog will escape without being eaten by the snake?
Video Solution
Additional Problems
148
OmegaLearn.org Chapter 12. Probability States
A square is drawn in the Cartesian coordinate plane with vertices at (2, 2), (−2, 2),
(−2, −2), (2, −2). A particle starts at (0, 0). Every second it moves with equal probability
to one of the eight lattice points (points with integer coordinates) closest to its current
position, independently of its previous moves. In other words, the probability is 1/8
that the particle will move from (x, y) to each of (x, y + 1), (x + 1, y + 1), (x + 1, y),
(x + 1, y − 1), (x, y − 1), (x − 1, y − 1), (x − 1, y), or (x − 1, y + 1). The particle will
eventually hit the square for the first time, either at one of the 4 corners of the square
or at one of the 12 lattice points in the interior of one of the sides of the square. The
probability that it will hit at a corner rather than at an interior point of a side is m/n,
where m and n are relatively prime positive integers. What is m + n?
Answers
1
12.1 7
25
12.2 32
1
12.3 4
12.1.1 4
1
12.1.2 24
5
12.1.3 8
12.1.4 107
63
12.1.5 146
12.1.6 39
149
Algebra
150
Chapter 13
Algebraic Manipulations
Video Lecture
151
OmegaLearn.org Chapter 13. Algebraic Manipulations
152
OmegaLearn.org Chapter 13. Algebraic Manipulations
153
OmegaLearn.org Chapter 13. Algebraic Manipulations
(x + y)3 = x3 + 3xy(x + y) + y 3
(x + y)3 = x3 + 3x2 y + 3xy 2 + y 3
(x − y)3 = x3 − 3xy(x − y) − y 3
(x − y)3 = x3 − 3x2 y + 3xy 2 − y 3
Theorem 13.1.3
If
1
x+ =a
x
then
1
x2 +
= a2 − 2
x2
1
x3 + 3 = a3 − 3a
x
1
x4 + 4 = (a2 − 2)2 − 2
x
Video Solution
Example 13.2
Given that x − 1
x
= 3, find x3 − 1
x3
Video Solution
154
OmegaLearn.org Chapter 13. Algebraic Manipulations
x2 − y 2 = (x − y)(x + y)
x3 − y 3 = (x − y)(x2 + xy + y 2 )
x3 + y 3 = (x + y)(x2 − xy + y 2 )
Example 13.3
Given that x − 1
x
= 3, find x3 − 1
x3
Video Solution
155
OmegaLearn.org Chapter 13. Algebraic Manipulations
Note: The signs in the second term alternate between positive and negative
xy + kx + jy + jk = (x + j)(y + k)
Remark 13.4.3
You can generally apply this factorization when you have xy, x, and y terms. After
applying the factorization, you can then find all possible values for each of your terms in
your factorization (remember negatives!).
Video Solution
1. Substitution
2. Elimination
3. Adding/Subtracting/Multiplying Equations
156
OmegaLearn.org Chapter 13. Algebraic Manipulations
Video Solution
Video Solution
157
OmegaLearn.org Chapter 13. Algebraic Manipulations
1 1 2
+ 2 − 2 =0
x2 − 10x − 29 x − 10x − 45 x − 10x − 69
Video Solution
Video Solution
Assuming a ̸= 3, b ̸= 4, and c =
̸ 5, what is the value in simplest form of the fol-
lowing expression?
a−3 b−4 c−5
· ·
5−c 3−a 4−b
Video Solution
Supposed that x and y are nonzero real numbers such that 3x+y
x−3y
= −2. What is
the value of 3x−y
x+3y
?
Video Solution
158
OmegaLearn.org Chapter 13. Algebraic Manipulations
Real numbers a and b satisfy the equations 3a = 81b+2 and 125b = 5a−3 . What is
ab?
Let a + 1 = b + 2 = c + 3 = d + 4 = a + b + c + d + 5. What is a + b + c + d?
Video Solution
Video Solution
x3 y 3
x+ + + y?
y 2 x2
Video Solution
Video Solution
159
OmegaLearn.org Chapter 13. Algebraic Manipulations
Given that x and y are distinct nonzero real numbers such that x + 2
x
= y + y2 , what is
xy?
Video Solution
Video Solution
Video Solution
160
OmegaLearn.org Chapter 13. Algebraic Manipulations
Video Solution
Additional Problems
Problem 13.6.12
If x + 1
x
= 4, then what is the value of x8 + 1
x8
?
xy + x + y = 71,
x2 y + xy 2 = 880.
161
OmegaLearn.org Chapter 13. Algebraic Manipulations
Suppose that x, y, and z are three positive numbers that satisfy the equations xyz = 1,
x + z1 = 5, and y + x1 = 29. Then z + y1 = m
n
, where m and n are relatively prime positive
integers. Find m + n.
ax + by = 3,
ax2 + by 2 = 7,
ax3 + by 3 = 16,
ax4 + by 4 = 42.
The equation 2333x−2 + 2111x+2 = 2222x+1 + 1 has three real roots. Given that their
sum is m/n where m and n are relatively prime positive integers, find m + n.
√
What is the product of the real roots of the equation x2 + 18x + 30 = 2 x2 + 18x + 45?
Find A2 , where A is the sum of the absolute values of all roots of the following equation:
162
OmegaLearn.org Chapter 13. Algebraic Manipulations
√
x = 19 + √19+ √ 91
91
19+ √ 91
19+ √ 91 91
19+ x
a + b = −3,
ab + bc + ca = −4,
abc + bcd + cda + dab = 14,
abcd = 30.
The equation √2000x6 + 100x5 + 10x3 + x − 2 = 0 has exactly two real roots, one
of which is m+r n , where m, n and r are integers, m and r are relatively prime, and r > 0.
Find m + n + r.
163
OmegaLearn.org Chapter 13. Algebraic Manipulations
Answers
13.1 194
13.2 36
13.3 36
13.4 1795
13.5 2
13.6 1
13.7 013
13.8 158
13.6.1 −1
13.6.2 2
13.6.3 60
−10
13.6.4 3
13.6.5 15
13.6.6 440
13.6.7 3
13.6.8 2
13.6.9 8
13.6.10 2
13.6.11 2
164
OmegaLearn.org Chapter 13. Algebraic Manipulations
13.6.13 14
13.6.14 −x
13.6.15 146
13.6.16 841
13.6.17 5
13.6.18 20
13.6.19 113
13.6.20 20
13.6.21 383
13.6.22 145
13.6.23 263
13.6.24 89
13.6.25 200
165
Chapter 14
Video Lecture
166
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
14.1 Polynomials
ax2 + bx + c = 0
are √
−b ± b2 − 4ac
x=
2a
1. If the discriminant b2 − 4ac is 0, then the quadratic has a double or repeated root
2. If the discriminant b2 − 4ac is positive, the quadratic has 2 different real roots
167
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
Example 14.1
If the roots of the quadratic 3x2 + 6x − 5 are r and s, find r3 + s3 .
Video Solution
an−2
r1 r2 + r1 r3 + .. + rn−1 rn (the sum of all products of 2 terms) =
an
an−3
r1 r2 r3 + r1 r2 r4 + ... + rn−2 rn−1 rn (the sum of all products of 3 terms) = −
an
..
.
a0
r1 r2 r3 . . . rn (the sum of all products of n terms) = (−1)n
an
Note that the negative and positive signs alternate. When summing the products for
odd number of terms, we will have a negative sign otherwise we will have a positive sign.
168
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
Example 14.2
If r, s, and t are roots of the cubic x3 − 6x − 5 = 0, find r3 + s3 + t3 .
Video Solution
Video Solution
169
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
Find the sum and product of the roots of the quadratic 2x2 − 24x + 17?
Video Solution
There are two values of a for which the equation 4x2 + ax + 8x + 9 = 0 has only
one solution for x. What is the sum of these values of a?
Video Solution
Video Solution
What is the sum of the reciprocals of the roots of the equation 2003
2004
x +1+ 1
x
= 0?
Video Solution
170
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
Video Solution
x
Let f be a function for which f = x2 + x + 1. Find the sum of all values of
3
z for which f (3z) = 7.
Video Solution
What is the sum of all real numbers x for which |x2 − 12x + 34| = 2?
Video Solution
The polynomial x3 − ax2 + bx − 2010 has three positive integer roots. What is the
smallest possible value of a?
Video Solution
Suppose that a and b are nonzero real numbers, and that the equation x2 + ax + b = 0
has solutions a and b. Then the pair (a, b) is
Video Solution
Suppose that the roots of x3 + 3x2 + 4x − 11 = 0 are a, b, and c, and that the roots of
x3 + rx2 + sx + t = 0 are a + b, b + c, and c + a. Find t.
171
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
Video Solution
g(x) = x3 + ax2 + x + 10
has three distinct roots, and each root of g(x) is also a root of the polynomial
What is f (1)?
Video Solution
Let a, b, and c be three distinct one-digit numbers. What is the maximum value
of the sum of the roots of the equation (x − a)(x − b) + (x − b)(x − c) = 0?
Video Solution
Problem 14.2.13
Video Solution
In the polynomial x4 − 18x3 + kx2 + 200x − 1984 = 0, the product of 2 of its roots is
−32. Find k.
172
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
Video Solution
Video Solution
The zeros of the function f (x) = x2 − ax + 2a are integers. What is the sum of
the possible values of a?
173
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
How many distinct ordered triples (x, y, z) satisfy the following equations?
x + 2y + 4z = 12
xy + 4yz + 2xz = 22
xyz = 6
Let P (x) = x2 − 3x − 7, and let Q(x) and R(x) be two quadratic polynomials also
with the coefficient of x2 equal to 1. David computes each of the three sums P + Q,
P + R, and Q + R and is surprised to find that each pair of these sums has a common
root, and these three common roots are distinct. If Q(0) = 2, then R(0) = m
n
, where m
and n are relatively prime positive integers. Find m + n.
Answers
14.1 −18
14.2 15
14.3 −11
14.2.1 12, 17
2
174
OmegaLearn.org Chapter 14. Vieta’s Formulas for Polynomials
14.2.2 −16
9
14.2.3 2
14.2.4 −1
14.2.5 8
14.2.6 − 91
14.2.7 18
14.2.8 78
14.2.10 023
14.2.11 −7007
14.2.12 16.5
14.2.13 −88
14.2.14 86
14.2.15 −88
14.3.1 16
14.3.2 753
14.3.3 500
14.3.4 6
14.3.5 6
14.3.6 510
14.3.7 71
175
Chapter 15
Polynomial Roots
Video Lecture
176
OmegaLearn.org Chapter 15. Polynomial Roots
177
OmegaLearn.org Chapter 15. Polynomial Roots
an (x − r1 )(x − r2 )(x − r3 ) . . . (x − rn )
(x − r1 )(x − r2 )(x − r3 ) . . . (x − rn )
Concept 15.1.3
When a problem asks you to find an expression like (k − r)(k − s)(k − t) where r, s, and
t are roots of the polynomial for a monic polynomial, it would just be equal to P (k) by
the above definition. The same will work for non monic polynomials except it would be
P (k)
an
where an is the coefficient of the xn term in the polynomial.
178
OmegaLearn.org Chapter 15. Polynomial Roots
Video Solution
Video Solution
(x − z1 )3 (x − z2 )3 · · · (x − z673 )3
can be expressed as x2019 + 20x2018 + 19x2017 + g(x), where g(x) is a polynomial with
complex coefficients and with degree at most 2016. The sum
X
zj zk
1≤j<k≤673
Video Solution
179
OmegaLearn.org Chapter 15. Polynomial Roots
is symmetric if
an = a0
an−1 = a1
an−2 = a2
an−3 = a3
etc.
Video Solution
Video Solution
180
OmegaLearn.org Chapter 15. Polynomial Roots
Video Solution
181
OmegaLearn.org Chapter 15. Polynomial Roots
Essentially, when flipping the coefficients of a polynomial, it will have roots that are
reciprocals of the original roots.
Remark 15.3.3
Remember, if the roots are k more, than we subtract k from each of the x terms in our
polynomial.
Remark 15.3.4
Polynomial manipulations are useful when evaluating complex expressions in terms of
roots. For example, in order to evaluate
1 1 1
+ +
(r − 3) 3 (s − 3) 3 (t − 3)3
of a polynomial with roots r, s, t, rather than expanding it out and bashing with Vieta’s
182
OmegaLearn.org Chapter 15. Polynomial Roots
Video Solution
183
OmegaLearn.org Chapter 15. Polynomial Roots
1. Start off with a Sk value and multiply by it by the leftmost polynomial coefficient.
Remark 15.3.6
Note that by each Newton Sum Equation, we can iteratively calculate each Pk rather
than having to bash with Vieta’s Formulas.
184
OmegaLearn.org Chapter 15. Polynomial Roots
x
Let f be a function for which f = x2 + x + 1. Find the sum of all values of
3
z for which f (3z) = 7.
Video Solution
Suppose that the roots of x3 + 3x2 + 4x − 11 = 0 are a, b, and c, and that the roots of
x3 + rx2 + sx + t = 0 are a + b, b + c, and c + a. Find t.
Video Solution
g(x) = x3 + ax2 + x + 10
has three distinct roots, and each root of g(x) is also a root of the polynomial
What is f (1)?
Video Solution
Problem 15.4.4
[AMC 10/12B] Let P (x) be a polynomial with rational coefficients such that when
P (x) is divided by the polynomial x2 + x + 1, the remainder is x + 2, and when P (x) is
divided by the polynomial x2 + 1, the remainder is 2x + 1. There is a unique polynomial of
least degree with these two properties. What is the sum of the squares of the coefficients
185
OmegaLearn.org Chapter 15. Polynomial Roots
of that polynomial?
(A) 10 (B) 13 (C) 19 (D) 20 (E) 23
Video Solution
Let P (x) be a polynomial such that when P (x) is divided by x − 19, the remain-
der is 99, and when P (x) is divided by x − 99, the remainder is 19. What is the remainder
when P (x) is divided by (x − 19)(x − 99)?
The
√ √
real root of the equation 8x3 − 3x2 − 3x − 1 = 0 can be written in the form
3 a+ 3 b+1
c
, where a, b, and c are positive integers. Find a + b + c.
√
Let x1 < x2 < x3 be the three real roots of the equation 2014x3 − 4029x2 + 2 = 0. Find
186
OmegaLearn.org Chapter 15. Polynomial Roots
x2 (x1 + x3 ).
The graph of y = x6 − 10x5 + 29x4 − 4x3 + ax2 lies above the line y = bx + c ex-
cept at three values of x, where the graph and the line intersect. What is the largest of
these values?
The equation √2000x6 + 100x5 + 10x3 + x − 2 = 0 has exactly two real roots, one
of which is m+r n , where m, n and r are integers, m and r are relatively prime, and r > 0.
Find m + n + r.
Let P (x) be a nonzero polynomial such that (x − 1)P (x + 1) = (x + 2)P (x) for every real
x, and (P (2))2 = P (3). Then P ( 72 ) = m
n
, where m and n are relatively prime positive
integers. Find m + n.
A quadratic polynomial with real coefficients and leading coefficient 1 is called disrespectful
if the equation p(p(x)) = 0 is satisfied by exactly three real numbers. Among all the
disrespectful quadratic polynomials, there is a unique such polynomial p̃(x) for which
the sum of the roots is maximized. What is p̃(1)?
187
OmegaLearn.org Chapter 15. Polynomial Roots
Answers
15.1 50
15.2 86
15.3 352
15.4 0
1 1
15.5 ,
20 5
1+a+b+c
15.6 c
15.4.1 − 91
15.4.2 023
15.4.3 −7007
15.4.4 23
15.5.1 5
15.5.2 −64
15.5.3 −x + 118
15.5.4 98
15.5.5 2
15.5.6 4
15.5.7 200
15.5.8 109
15.5.9 85
5
15.5.10 16
188
Chapter 16
Arithmetic Sequences
Video Lecture
189
OmegaLearn.org Chapter 16. Arithmetic Sequences
1, 4, 7, 10, 13, . . . , 40
Remark 16.0.2
Note that an arithmetic sequence can also have a negative common difference. For
example, in the arithmetic sequence
an = a1 + (n − 1)d
an = am + (n − m)d
190
OmegaLearn.org Chapter 16. Arithmetic Sequences
191
OmegaLearn.org Chapter 16. Arithmetic Sequences
Video Solution
Video Solution
192
OmegaLearn.org Chapter 16. Arithmetic Sequences
Video Solution
In how many ways can 345 be written as the sum of an increasing sequence of two
or more consecutive positive integers?
Video Solution
Suppose that S is a finite set of positive integers. If the greatest integer in S is re-
moved from S, then the average value (arithmetic mean) of the integers remaining is 32.
If the least integer in S is also removed, then the average value of the integers remaining
is 35. If the greatest integer is then returned to the set, the average value of the integers
rises to 40. The greatest integer in the original set S is 72 greater than the least integer
in S. What is the average value of all the integers in the set S?
Video Solution
In the five-sided star shown, the letters A, B, C, D, and E are replaced by the num-
bers 3, 5, 6, 7, and 9, although not necessarily in this order. The sums of the numbers
at the ends of the line segments AB,BC,CD,DE, and EA form an arithmetic sequence,
although not necessarily in this order. What is the middle term of the arithmetic
sequence?
193
OmegaLearn.org Chapter 16. Arithmetic Sequences
C D
E B
Video Solution
A grocer makes a display of cans in which the top row has one can and each lower
row has two more cans than the row above it. If the display contains 100 cans, how many
rows does it contain?
Video Solution
The terms of an arithmetic sequence add to 715. The first term of the sequence is
increased by 1, the second term is increased by 3, the third term is increased by 5, and in
general, the kth term is increased by the kth odd positive integer. The terms of the new
sequence add to 836. Find the sum of the first, last, and middle terms of the original
sequence.
Video Solution
194
OmegaLearn.org Chapter 16. Arithmetic Sequences
Video Solution
Additional Problems
Problem 16.1.8 (AMC 10)
Mary divides a circle into 12 sectors. The central angles of these sectors, measured
in degrees, are all integers and they form an arithmetic sequence. What is the degree
measure of the smallest possible sector angle?
How many non-similar triangles have angles whose degree measures are distinct positive
integers in arithmetic progression?
The degree measures of the angles in a convex 18-sided polygon form an increasing
arithmetic sequence with integer values. Find the degree measure of the smallest angle.
Problem 16.1.11
Find the roots of the polynomial x5 − 5x4 − 35x3 + ax2 + bx + c, given that the roots
form an arithmetic progression.
Find the eighth term of the sequence 1440, 1716, 1848, . . . , whose terms are formed by
multiplying the corresponding terms of two arithmetic sequences.
195
OmegaLearn.org Chapter 16. Arithmetic Sequences
Answers
16.1 12
16.2 925
16.1.1 90
16.1.2 7
16.1.3 36.8
16.1.4 12
16.1.5 10
16.1.6 195
16.1.7 0.01
16.1.8 8
16.1.9 59
16.1.10 143
16.1.11 −−
16.1.12 348
196
Chapter 17
Geometric Sequences
Video Lecture
197
OmegaLearn.org Chapter 17. Geometric Sequences
1, 2, 4, 8, 16, 32 . . . , 1024
is a geometric sequence because there is always a ratio of 2 between consecutive terms.
Definition 17.0.2 (Geometric Sequence Notation). In general, the terms of a geometric
sequence can be represented as:
g1 , g2 , g3 , g4 , . . . , gn
where
Remark 17.0.3
Note that a geometric sequence can also have a negative common ratio. For example the
sequence 1, −2, 4, −8, . . . , 256, −512, 1024 has a common ratio of −2.
gn = g1 · rn−1
gn = gm · r(n−m)
Video Solution
198
OmegaLearn.org Chapter 17. Geometric Sequences
Remark 17.0.7
The reason the formula only works for |r| < 1 is because if |r| ≥ 1 the sum will diverge
or essentially be infinite. We can only find the sum of an infinite geometric sequence
which is converging as its sum approaches a constant value. Examples:
1 1 1 1
1+ + + + ··· = =2
2 4 8 1− 1
2
1 1 1 1 3
1+ + + + ··· = =
3 9 27 1− 1
3
2
Video Solution
Video Solution
199
OmegaLearn.org Chapter 17. Geometric Sequences
The fifth term of a geometric sequence of positive numbers is 11 and the eleventh
term is 5. What is the eighth term of the sequence?
Video Solution
The third and fourth terms of an arithmetic sequence are the first and second terms of a
geometric sequence. If the first two terms of the arithmetic sequence are 5, 2, then what
is the fourth term of the geometric sequence?
Video Solution
Video Solution
200
OmegaLearn.org Chapter 17. Geometric Sequences
The positive integers A, B, and C form an arithmetic sequence while the integers
B, C, and D form a geometric sequence. If B
C
= 53 , what is the smallest possible value of
A + B + C + D?
Video Solution
Call a 3-digit number geometric if it has 3 distinct digits which, when read from left to
right, form a geometric sequence. Find the difference between the largest and smallest
geometric numbers.
The sum of the first 2011 terms of a geometric sequence is 200. The sum of the
first 4022 terms is 380. Find the sum of the first 6033 terms.
The sum of an infinite geometric series is a positive number S, and the second term in
the series is 1. What is the smallest possible value of S?
201
OmegaLearn.org Chapter 17. Geometric Sequences
Positive integers a, b, and 2009, with a < b < 2009, form a geometric sequence with an
integer ratio. What is a?
In an increasing sequence of four positive integers, the first three terms form an arithmetic
progression, the last three terms form a geometric progression, and the first and fourth
terms differ by 30. Find the sum of the four terms.
A high school basketball game between the Raiders and Wildcats was tied at the
end of the first quarter. The number of points scored by the Raiders in each of the four
quarters formed an increasing geometric sequence, and the number of points scored by
the Wildcats in each of the four quarters formed an increasing arithmetic sequence. At
the end of the fourth quarter, the Raiders had won by one point. Neither team scored
more than 100 points. What was the total number of points scored by the two teams in
the first half?
Problem 17.2.8
Let p and q be real numbers with |p| < 1 and |q| < 1 such that
202
OmegaLearn.org Chapter 17. Geometric Sequences
Two distinct, real, infinite geometric series each have a sum of 1 and have the same
second term. The third term of √one of the series is 1/8, and the second term of both
series can be written in the form m−n
p
, where m, n, and p are positive integers and m is
not divisible by the square of any prime. Find 100m + 10n + p.
Answers
17.1 363
17.2 336
17.3 802
√
17.1.1 55
17.1.2 −64
81
17.1.3 2
17.1.4 52
17.2.1 840
17.2.2 542
17.2.3 750
17.2.4 4
17.2.5 41
17.2.6 129
17.2.7 34
17.2.8 48
17.2.9 973
17.2.10 518
203
Chapter 18
Special Sequences
Video Lecture
204
OmegaLearn.org Chapter 18. Special Sequences
1 + 3 + 5 + · · · + (2n − 1) = n2
In simple terms, the
Sum of first n odd numbers = n2
2 + 4 + 6 + · · · + 2n = n(n + 1)
To intuitively think about it, just take 2 common from each term
(n)(n + 1)
2(1 + 2 + 3 + · · · + n) = 2 = n(n + 1)
2
205
OmegaLearn.org Chapter 18. Special Sequences
18.1 Telescoping
Concept 18.1.1 (Telescoping)
Expand the first few and last few terms, and cancel out any terms you see.
Remark 18.1.2
Generally, whenever you have long expressions that seem to be hard or impossible to
compute manually, telescoping is probably a good option.
Video Solution
Video Solution
206
OmegaLearn.org Chapter 18. Special Sequences
x1 = 211,
x2 = 375,
x3 = 420,
x4 = 523, and
xn = xn−1 − xn−2 + xn−3 − xn−4 when n ≥ 5,
Video Solution
207
OmegaLearn.org Chapter 18. Special Sequences
Video Solution
Video Solution
Seven cubes, whose volumes are 1, 8, 27, 64, 125, 216, and 343 cubic units, are stacked
vertically to form a tower in which the volumes of the cubes decrease from bottom to
top. Except for the bottom cube, the bottom face of each cube lies completely on top of
the cube below it. What is the total surface area of the tower (including the bottom) in
square units?
Video Solution
Hiram’s algebra notes are 50 pages long and are printed on 25 sheets of paper; the
first sheet contains pages 1 and 2, the second sheet contains pages 3 and 4, and so on.
One day he leaves his notes on the table before leaving for lunch, and his roommate
decides to borrow some pages from the middle of the notes. When Hiram comes back, he
208
OmegaLearn.org Chapter 18. Special Sequences
discovers that his roommate has taken a consecutive set of sheets from the notes and
that the average (mean) of the page numbers on all remaining sheets is exactly 19. How
many sheets were borrowed?
Video Solution
Additional Problems
Problem 18.2.5 (AHSME)
If Tn = 1 + 2 + 3 + · · · + n and
T2 T3 T4 Tn
Pn = · · · ··· ·
T2 − 1 T3 − 1 T4 − 1 Tn − 1
for n = 2, 3, 4, · · · , then P1991 is closest to which of the following numbers?
(A) 2.0 (B) 2.3 (C) 2.6 (D) 2.9 (E) 3.2
Let A be the set of positive integers that have no prime factors other than 2, 3, or
5. The infinite sum
1 1 1 1 1 1 1 1 1 1 1 1 1 1
+ + + + + + + + + + + + + + ···
1 2 3 4 5 6 8 9 10 12 15 16 18 20
of the reciprocals of the elements of A can be expressed as m
n
, where m and n are relatively
prime positive integers. What is m + n?
The Fibonacci sequence 1, 1, 2, 3, 5, 8, 13, 21, . . . starts with two 1s, and each term after-
209
OmegaLearn.org Chapter 18. Special Sequences
wards is the sum of its two predecessors. Which one of the ten digits is the last to appear
in the units position of a number in the Fibonacci sequence?
Call a three-term strictly increasing arithmetic sequence of integers special if the sum of
the squares of the three terms equals the product of the middle term and the square of
the common difference. Find the sum of the third terms of all special sequences.
Problem 18.2.10
Evaluate
1 1 1
2 ! 2 ! 2 !
1− 1− 1− ...
3 4 5
This sequence tends to a limit; call it L. What is the least value of k such that
1
|uk − L| ≤ ?
21000
210
OmegaLearn.org Chapter 18. Special Sequences
The sum of the first m positive odd integers is 212 more than the sum of the first
n positive even integers. What is the sum of all possible values of n?
a2n−1
a0 = 1, a1 = 1, and an = an−1 + for n ≥ 2.
an−2
b2n−1
b0 = 1, b1 = 3, and bn = bn−1 + for n ≥ 2.
bn−2
Find b32
a32
.
Answers
18.1 840
1
18.2 2
18.3 898
50
18.2.1 99
18.2.2 0
18.2.3 658
18.2.4 13
211
OmegaLearn.org Chapter 18. Special Sequences
18.2.5 2.9
18.2.6 19
128
18.2.7 257
18.2.8 6
18.2.9 31
2
18.2.10 3
18.2.11 986
18.2.12 10
18.2.13 255
18.2.14 561
18.2.15 90
212
Chapter 19
Video Lecture
213
OmegaLearn.org Chapter 19. Mean, Median, Mode
Video Solution
Definition 19.0.2 (Median). After arranging the numbers in increasing or decreasing order:
If number of terms is odd,
Median = middle number
If number of terms is even,
Median = average of middle two numbers
Definition 19.0.3 (Mode).
Mode = Most common term(s)
Remark 19.0.4
There could be multiple modes. If the problem says “unique mode”, it means that there
is only one mode.
√
n
a1 × a2 × a3 · · · × an
Definition 19.0.6. Harmonic Mean of numbers a1 , a2 , a3 , . . . , an
1
= 1
+ a1 +···+ a1
a1 2 n
n
n
= 1
a1
+ 1
a2
+ ··· + 1
an
214
OmegaLearn.org Chapter 19. Mean, Median, Mode
Video Solution
10, 2, 5, 2, 4, 2, x
are arranged in increasing order, they form a non-constant arithmetic progression. What
is the sum of all possible real values of x?
Video Solution
215
OmegaLearn.org Chapter 19. Mean, Median, Mode
The quiz scores of a class with k > 12 students have a mean of 8. The mean of a
collection of 12 of these quiz scores is 14. What is the mean of the remaining quiz scores
in terms of k?
Video Solution
Suppose that S is a finite set of positive integers. If the greatest integer in S is re-
moved from S, then the average value (arithmetic mean) of the integers remaining is 32.
If the least integer in S is also removed, then the average value of the integers remaining
is 35. If the greatest integer is then returned to the set, the average value of the integers
rises to 40. The greatest integer in the original set S is 72 greater than the least integer
in S. What is the average value of all the integers in the set S?
Video Solution
The quiz scores of a class with k > 12 students have a mean of 8. The mean of a
collection of 12 of these quiz scores is 14. What is the mean of the remaining quiz scores
of terms of k?
Video Solution
Ms. Blackwell gives an exam to two classes. The mean of the scores of the students
in the morning class is 84, and the afternoon class’s mean score is 70. The raio of the
number of students in the morning class to the number of students in the afternoon class
is 34 . What is the mean of the scores of all the students?
216
OmegaLearn.org Chapter 19. Mean, Median, Mode
Video Solution
In the following list of numbers, the integer n appears n times in the list for 1 ≤ n ≤ 200.
Video Solution
Additional Problems
Problem 19.1.6 (AMC 10)
The numbers 3, 5, 7, a, and b have an average (arithmetic mean) of 15. What is the
average of a and b?
The mean, median, and mode of the 7 data values 60, 100, x, 40, 50, 200, 90 are all
equal to x. What is the value of x?
Every high school in the city of Euclid sent a team of 3 students to a math contest.
Each participant in the contest received a different score. Andrea’s score was the median
among all students, and hers was the highest score on her team. Andrea’s teammates
Beth and Carla placed 37th and 64th, respectively. How many schools are in the city?
217
OmegaLearn.org Chapter 19. Mean, Median, Mode
1, 2, 3, . . . , 2020, 12 , 22 , 32 , . . . , 20202
A list of 2018 positive integers has a unique mode, which occurs exactly 10 times.
What is the least number of distinct values that can occur in the list?
Melanie computes the mean µ, the median M , and the modes of the 365 values that are
the dates in the months of 2019. Thus her data consist of 12 1s, 12 2s, . . . , 12 28s,
11 29s, 11 30s, and 7 31s. Let d be the median of the modes. Which of the following
statements is true?
(A) µ < d < M (B) M < d < µ (C) d = M = µ
(D) d < M < µ (E) d < µ < M
The arithmetic mean of two distinct positive integers x and y is a two-digit integer.
The geometric mean of x and y is obtained by reversing the digits of the arithmetic mean.
What is |x − y|?
218
OmegaLearn.org Chapter 19. Mean, Median, Mode
A sample of 121 integers is given, each between 1 and 1000 inclusive, with repeti-
tions allowed. The sample has a unique mode (most frequent value). Let D be the
difference between the mode and the arithmetic mean of the sample. What is the largest
possible value of ⌊D⌋? (For real x, ⌊x⌋ is the greatest integer less than or equal to x.)
Answers
19.1 651
19.2 −5
19.3 20
8k−168
19.1.1 k−12
19.1.2 36.8
8k−168
19.1.3 k−12
19.1.4 76
19.1.5 142
19.1.6 30
19.1.7 90
19.1.8 23
19.1.9 1976.5
19.1.10 225
19.1.12 649
19.1.13 66
19.1.14 947
219
Chapter 20
System of Equations
Video Lecture
220
OmegaLearn.org Chapter 20. System of Equations
Video Solution
221
OmegaLearn.org Chapter 20. System of Equations
Theorem 20.1.1
Equivalently,
Work
Rate =
Time
Work
Time =
Rate
Theorem 20.1.2
The if one person can do something is a amount of time, and someone else can do it in b
amount of time, together they can do it in
ab
a+b
time.
Remark 20.1.3
This not only applies to work. For example, if a problem says 2 faucets take a and b
hours to fill a tub, together they can fill a tub in
ab
a+b
hours.
222
OmegaLearn.org Chapter 20. System of Equations
Video Solution
Video Solution
In an after-school program for juniors and seniors there is a debate team with an
equal number of students from each class on the team. Among the 28 students on the
program, 25% of the juniors and 10% of the seniors are on the debate team. How many
juniors are in the program?
Video Solution
Joe has a collection of 23 coins, consisting of 5-cent coins, 10-cent coins, and 25-cent
223
OmegaLearn.org Chapter 20. System of Equations
coins. He has 3 more 10-cent coins than 5-cent coins, and the total value of his collection
is 320 cents. How many more 25-cent coins does Joe have than 5-cent coins?
Video Solution
The sum of two natural numbers is 17,402. One of the two numbers is divisible by
10. If the units digit of that number is erased, the other number is obtained. What is
the difference of these two numbers?
Video Solution
Pablo, Sofia, and Mia got some candy eggs at a party. Pablo had three times as
many eggs as Sofia, and Sofia had twice as many eggs as Mia. Pablo decides to give some
of his eggs to Sofia and Mia so that all three will have the same number of eggs. What
fraction of his eggs should Pablo give to Sofia?
Video Solution
The sum of two natural numbers is 17,402. One of the two numbers is divisible by
10. If the units digit of that number is erased, the other number is obtained. What is
the difference of these two numbers?
Video Solution
At a math contest, 57 students are wearing blue shirts, and another 75 students are
wearing yellow shirts. The 132 students are assigned into 66 pairs. In exactly 23 of
these pairs, both students are wearing blue shirts. In how many pairs are both students
wearing yellow shirts?
224
OmegaLearn.org Chapter 20. System of Equations
Video Solution
1.abab · · · = 1.ab
Where a and b are digits. He did not notice the notation and just multiplied 66 times
1.ab. Later he found that his answer is 0.5 less than the correct answer. What is the
2-digit integer ab?
Video Solution
Suppose that S is a finite set of positive integers. If the greatest integer in S is re-
moved from S, then the average value (arithmetic mean) of the integers remaining is 32.
IF the least integer in S is also removed, then the average value of the integers remaining
is 35. IF the greatest integer is then returned to the set, the average value of the integers
rises to 40. The greatest integer in the original set S is 72 greater than the least integer
in S. Wha tis the average value of all the integers in the set S?
Video Solution
Additional Problems
Problem 20.2.9 (AMC 10)
Ana and Bonita were born on the same date in different years, n years apart. Last year
Ana was 5 times as old as Bonita. This year Ana’s age is the square of Bonita’s age.
What is n?
225
OmegaLearn.org Chapter 20. System of Equations
At Megapolis Hospital one year, multiple-birth statistics were as follows: Sets of twins,
triplets, and quadruplets accounted for 1000 of the babies born. There were four times
as many sets of triplets as sets of quadruplets, and there was three times as many sets of
twins as sets of triplets. How many of these 1000 babies were in sets of quadruplets?
Two jars each contain the same number of marbles, and every marble is either blue or
green. In Jar 1 the ratio of blue to green marbles is 9 : 1, and the ratio of blue to green
marbles in Jar 2 is 8 : 1. There are 95 green marbles in all. How many more blue marbles
are in Jar 1 than in Jar 2?
In the United States, coins have the following thicknesses: penny, 1.55 mm; nickel,
1.95 mm; dime, 1.35 mm; quarter, 1.75 mm. If a stack of these coins is exactly 14 mm
high, how many coins are in the stack?
Boris has an incredible coin-changing machine. When he puts in a quarter, it returns five
nickels; when he puts in a nickel, it returns five pennies; and when he puts in a penny, it
returns five quarters. Boris starts with just one penny. Which of the following amounts
could Boris have after using the machine repeatedly?
(A)3.63 (B)5.13 (C)6.30 (D)7.45 (E)9.07
One morning each member of Angela’s family drank an 8-ounce mixture of coffee with
milk. The amounts of coffee and milk varied from cup to cup, but were never zero.
Angela drank a quarter of the total amount of milk and a sixth of the total amount of
coffee. How many people are in the family?
226
OmegaLearn.org Chapter 20. System of Equations
The state income tax where Kristin lives is levied at the rate of p% of the first $28000
of annual income plus (p + 2)% of any amount above $28000. Kristin noticed that the
state income tax she paid amounted to (p + 0.25)% of her annual income. What was her
annual income?
Paula the painter and her two helpers each paint at constant, but different, rates.
They always start at 8:00 AM, and all three always take the same amount of time to
eat lunch. On Monday the three of them painted 50% of a house, quitting at 4:00 PM.
On Tuesday, when Paula wasn’t there, the two helpers painted only 24% of the house
and quit at 2:12 PM. On Wednesday Paula worked by herself and finished the house by
working until 7:12 P.M. How long, in minutes, was each day’s lunch break?
A group of 12 pirates agree to divide a treasure chest of gold coins among themselves as
follows. The k th pirate to take a share takes 12
k
of the coins that remain in the chest. The
number of coins initially in the chest is the smallest number for which this arrangement
will allow each pirate to receive a positive whole number of coins. How many coins does
the 12th pirate receive?
Jar A contains four liters of a solution that is 45% acid. Jar B contains five liters
of a solution that is 48% acid. Jar C contains one liter of a solution that is k% acid.
From jar C, m n
liters of the solution is added to jar A, and the remainder of the solution
in jar C is added to jar B. At the end both jar A and jar B contain solutions that are
50% acid. Given that m and n are relatively prime positive integers, find k + m + n.
In order to complete a large job, 1000 workers were hired, just enough to complete
the job on schedule. All the workers stayed on the job while the first quarter of the work
227
OmegaLearn.org Chapter 20. System of Equations
was done, so the first quarter of the work was completed on schedule. Then 100 workers
were laid off, so the second quarter of the work was completed behind schedule. Then
an additional 100 workers were laid off, so the third quarter of the work was completed
still further behind schedule. Given that all workers work at the same rate, what is the
minimum number of additional workers, beyond the 800 workers still on the job at the
end of the third quarter, that must be hired after three-quarters of the work has been
completed so that the entire project can be completed on schedule or before?
A group of clerks is assigned the task of sorting 1775 files. Each clerk sorts at a
constant rate of 30 files per hour. At the end of the first hour, some of the clerks are
reassigned to another task; at the end of the second hour, the same number of the
remaining clerks are also reassigned to another task, and a similar assignment occurs
at the end of the third hour. The group finishes the sorting in 3 hours and 10 minutes.
Find the number of files sorted during the first one and a half hours of sorting.
Answers
20.1 42
20.2 334
20.3 450
20.2.1 8
20.2.2 2
20.2.4 1/6
20.2.6 32
228
OmegaLearn.org Chapter 20. System of Equations
20.2.7 75
20.2.8 36.8
20.2.9 12
20.2.10 100
20.2.11 5
20.2.12 8
20.2.13 $7.45
20.2.14 5
20.2.15 32000
20.2.16 48
20.2.17 1925
20.2.18 85
20.2.19 766
20.2.20 945
229
Chapter 21
Video Lecture
230
OmegaLearn.org Chapter 21. Speed, Distance, and Time
Theorem 21.0.1
Equivalently,
Distance
Speed =
Time
Distance
Time =
Speed
Theorem 21.0.2
Total Distance
Average Speed =
Total Time
Remark 21.0.3
A common mistake is to assume that average speed is the averages of all speeds (especially
when the distance you are traveling at each of those speeds are the same). Remember,
that’s not true unless you are traveling at those speeds for the same amount of time!
Video Solution
231
OmegaLearn.org Chapter 21. Speed, Distance, and Time
Video Solution
Video Solution
232
OmegaLearn.org Chapter 21. Speed, Distance, and Time
A cart rolls down a hill, travelling 5 inches the first second and accelerating so that
during each successive 1-second time interval, it travels 7 inches more than during the
previous 1-second interval. The cart takes 30 seconds to reach the bottom of the hill.
How far, in inches, does it travel?
Video Solution
Chantal and Jean start hiking from a trailhead toward a fire tower. Jean is wear-
ing a heavy backpack and walks slower. Chantal starts walking at 4 miles per hour.
Halfway to the tower, the trail becomes really steep, and Chantal slows down to 2 miles
per hour. After reaching the tower, she immediately turns around and descends the steep
part of the trail at 3 miles per hour. She meets Jean at the halfway point. What was
Jean’s average speed, in miles per hour, until they meet?
Video Solution
A car passes point A driving at a constant rate of 60 km per hour. A second car,
traveling at a constant rate of 75 km per hour, passes the same point A a while later and
then follows the first car. It catches the first car after traveling a distance of 75 km past
point A. How many minutes after the first car passed point A did the second car pass
point A?
Video Solution
A cart rolls down a hill, travelling 5 inches the first second and accelerating so that
during each successive 1-second time interval, it travels 7 inches more than during the
233
OmegaLearn.org Chapter 21. Speed, Distance, and Time
previous 1-second interval. The cart takes 30 seconds to reach the bottom of the hill.
How far, in inches, does it travel?
Video Solution
Chantal and Jean start hiking from a trailhead toward a fire tower. Jean is wear-
ing a heavy backpack and walks slower. Chantal starts walking at 4 miles per hour.
Halfway to the tower, the trail becomes really steep, and Chantal slows down to 2 miles
per hour. After reaching the tower, she immediately turns around and descends the steep
part of the trail at 3 miles per hour. She meets Jean at the halfway point. What was
Jean’s average speed, in miles per hour, until they meet?
Video Solution
234
OmegaLearn.org Chapter 21. Speed, Distance, and Time
Additional Problems
Problem 21.1.6 (AMC 10)
Sam drove 96 miles in 90 minutes. His average speed during the first 30 minutes
was 60 mph (miles per hour), and his average speed during the second 30 minutes was 65
mph. What was his average speed, in mph, during the last 30 minutes?
Samia set off on her bicycle to visit her friend, traveling at an average speed of 17
kilometers per hour. When she had gone half the distance to her friend’s house, a tire
went flat, and she walked the rest of the way at 5 kilometers per hour. In all it took her
44 minutes to reach her friend’s house. In kilometers rounded to the nearest tenth, how
far did Samia walk?
Roy bought a new battery-gasoline hybrid car. On a trip the car ran exclusively on its
battery for the first 40 miles, then ran exclusively on gasoline for the rest of the trip,
using gasoline at a rate of 0.02 gallons per mile. On the whole trip he averaged 55 miles
per gallon. How long was the trip in miles?
Rudolph bikes at a constant rate and stops for a five-minute break at the end of every
mile. Jennifer bikes at a constant rate which is three-quarters the rate that Rudolph
bikes, but Jennifer takes a five-minute break at the end of every two miles. Jennifer and
Rudolph begin biking at the same time and arrive at the 50-mile mark at exactly the
same time. How many minutes has it taken them?
Andrea and Lauren are 20 kilometers apart. They bike toward one another with Andrea
traveling three times as fast as Lauren, and the distance between them decreasing at a
rate of 1 kilometer per minute. After 5 minutes, Andrea stops biking because of a flat
235
OmegaLearn.org Chapter 21. Speed, Distance, and Time
tire and waits for Lauren. After how many minutes from the time they started to bike
does Lauren reach Andrea?
While Steve and LeRoy are fishing 1 mile from shore, their boat springs a leak, and water
comes in at a constant rate of 10 gallons per minute. The boat will sink if it takes in
more than 30 gallons of water. Steve starts rowing towards the shore at a constant rate
of 4 miles per hour while LeRoy bails water out of the boat. What is the slowest rate,
in gallons per minute, at which LeRoy can bail if they are to reach the shore without
sinking?
Ed and Sue bike at equal and constant rates. Similarly, they jog at equal and con-
stant rates, and they swim at equal and constant rates. Ed covers 74 kilometers after
biking for 2 hours, jogging for 3 hours, and swimming for 4 hours, while Sue covers 91
kilometers after jogging for 2 hours, swimming for 3 hours, and biking for 4 hours. Their
biking, jogging, and swimming rates are all whole numbers of kilometers per hour. Find
the sum of the squares of Ed’s biking, jogging, and swimming rates.
Ana, Bob, and Cao bike at constant rates of 8.6 meters per second, 6.2 meters per
second, and 5 meters per second, respectively. They all begin biking at the same time
from the northeast corner of a rectangular field whose longer side runs due west. Ana
starts biking along the edge of the field, initially heading west, Bob starts biking along
the edge of the field, initially heading south, and Cao bikes in a straight line across the
field to a point D on the south edge of the field. Cao arrives at point D at the same
time that Ana and Bob arrive at D for the first time. The ratio of the field’s length to
the field’s width to the distance from point D to the southeast corner of the field can be
represented as p : q : r, where p, q, and r are positive integers with p and q relatively
prime. Find p + q + r.
Jon and Steve ride their bicycles along a path that parallels two side-by-side train
236
OmegaLearn.org Chapter 21. Speed, Distance, and Time
tracks running the east/west direction. Jon rides east at 20 miles per hour, and Steve
rides west at 20 miles per hour. Two trains of equal length, traveling in opposite directions
at constant but different speeds each pass the two riders. Each train takes exactly 1
minute to go past Jon. The westbound train takes 10 times as long as the eastbound
train to go past Steve. The length of each train is mn
miles, where m and n are relatively
prime positive integers. Find m + n.
Answers
21.1 1 15
21.2 120
21.3 52
21.1.1 3195
12
21.1.2 13
21.1.3 15min
21.1.4 3195
12
21.1.5 13
21.1.6 67
21.1.7 2.8
21.1.8 440
21.1.9 620
21.1.10 65
21.1.11 8
21.1.12 314
21.1.13 061
21.1.14 49
237
Number Theory
238
Chapter 22
Video Lecture
239
OmegaLearn.org Chapter 22. Primes and Factors
Definition 22.0.1 (Primes). Primes are numbers that have exactly two factors: 1 and the
number itself. Ex. 2, 3, 5, 7, 11, 13, 17, 19, 23, etc. are all primes
Remark 22.0.2
In order to check whether a number n is prime, we need to check all the primes that are
less than or equal to √
n
Video Solution
Remark 22.0.5
Basically, in order to find the number of factors of a number:
240
OmegaLearn.org Chapter 22. Primes and Factors
Video Solution
Video Solution
(1+p11 +p21 +· · ·+pe11 −1 +pe11 )(1+p12 +p22 +· · ·+pe22 −1 +pe22 ) . . . (1+p1k +p2k +· · ·+pkek −1 +pekk )
241
OmegaLearn.org Chapter 22. Primes and Factors
Video Solution
242
OmegaLearn.org Chapter 22. Primes and Factors
A positive integer divisor of 12! is chosen at random. The probability that the di-
visor chosen is a perfect square can be expressed as m
n
, where m and n are relatively
prime positive integers. What is m + n?
Video Solution
A single bench section at a school event can hold either 7 adults or 11 children. When N
bench sections are connected end to end, an equal number of adults and children seated
together will occupy all the bench space. What is the least possible positive integer value
of N ?
(A) 9 (B) 18 (C) 27 (D) 36 (E) 77
Video Solution
Video Solution
The numbers from 1 to 8 are placed at the vertices of a cube in such a manner that the
sum of the four numbers on each face is the same. What is this common sum?
Video Solution
243
OmegaLearn.org Chapter 22. Primes and Factors
How many positive even multiples of 3 less than 2020 are perfect squares?
Video Solution
How many positive integer divisors of 2019 are perfect squares or perfect cubes (or
both)?
Video Solution
What is the sum of the exponents of the prime factors of the square root of the largest
perfect square that divides 12! ?
Video Solution
How many ways are there to write 2016 as the sum of twos and threes, ignoring order?
(For example, 1008 · 2 + 0 · 3 and 402 · 2 + 404 · 3 are two such ways.)
Video Solution
Find the number of positive integers with three not necessarily distinct digits, abc,
with a ̸= 0 and c ̸= 0 such that both abc and cba are multiples of 4.
Video Solution
244
OmegaLearn.org Chapter 22. Primes and Factors
For some positive integer n, the number 110n3 has 110 positive integer divisors, in-
cluding 1 and the number 110n3 . How many positive integer divisors does the number
81n4 have?
Video Solution
Let S be the set of all positive integer divisors of 100, 000. How many numbers are
the product of two distinct elements of S?
Video Solution
The 25 integers from −10 to 14, inclusive, can be arranged to form a 5-by-5 square in
which the sum of the numbers in each row, the sum of the numbers in each column, and
the sum of the numbers along each of the main diagonals are all the same. What is the
value of this common sum?
Video Solution
All the numbers 2, 3, 4, 5, 6, 7 are assigned to the six faces of a cube, one number to each
face. For each of the eight vertices of the cube, a product of three numbers is computed,
where the three numbers are the numbers assigned to the three faces that include that
vertex. What is the greatest possible value of the sum of these eight products?
Video Solution
245
OmegaLearn.org Chapter 22. Primes and Factors
How many odd positive 3-digit integers are divisible by 3 but do not contain the digit 3?
Video Solution
Video Solution
There is a prime number p such that 16p + 1 is the cube of a positive integer. Find p.
Video Solution
Joey and Chloe and their daughter Zoe all have the same birthday. Joey is 1 year
older than Chloe, and Zoe is exactly 1 year old today. Today is the first of the 9 birthdays
on which Chloe’s age will be an integral multiple of Zoe’s age. What will be the sum of
the two digits of Joey’s age the next time his age is a multiple of Zoe’s age?
Video Solution
Video Solution
246
OmegaLearn.org Chapter 22. Primes and Factors
Video Solution
Video Solution
Find the number of ordered pairs of positive integers (m, n) such that m2 n = 2020 .
Video Solution
247
OmegaLearn.org Chapter 22. Primes and Factors
Let N = 34 · 34 · 63 · 270. What is the ratio of the sum of the odd divisors of N
to the sum of the even divisors of N ?
Video Solution
Additional Problems
Problem 22.3.23 (AMC 12)
In multiplying two positive integers a and b, Ron reversed the digits of the two-digit
number a. His erroneous product was 161. What is the correct value of the product of a
and b?
Positive integers a, b, and 2009, with a < b < 2009, form a geometric sequence with an
integer ratio. What is a?
Let N = 34 · 34 · 63 · 270. What is the ratio of the sum of the odd divisors of N
to the sum of the even divisors of N ?
Suppose that m and n are positive integers such that 75m = n3 . What is the min-
248
OmegaLearn.org Chapter 22. Primes and Factors
Elmo makes N sandwiches for a fundraiser. For each sandwich he uses B globs of
peanut butter at 4¢per glob and J blobs of jam at 5¢per blob. The cost of the peanut
butter and jam to make all the sandwiches is $2.53. Assume that B, J, and N are positive
integers with N > 1. What is the cost of the jam Elmo uses to make the sandwiches?
The largest prime factor of 16384 is 2 because 16384 = 214 . What is the sum of
the digits of the greatest prime number that is a divisor of 16383?
How many ways are there to paint each of the integers 2, 3, . . . , 9 either red, green,
or blue so that each number has a different color from each of its proper divisors?
The positive integers A, B, A − B, and A + B are all prime numbers. The sum of
these four primes is
(A) even (B) divisible by 3 (C) divisible by 5
(D) divisible by 7 (E) prime
Given that 38 · 52 = ab , where both a and b are positive integers, find the smallest
possible value for a + b.
How many positive integer divisors of 20042004 are divisible by exactly 2004 positive
249
OmegaLearn.org Chapter 22. Primes and Factors
integers?
Find the number of positive integers that are divisors of at least one of 1010 , 157 , 1811 .
Let S be the sum of all numbers of the form a/b, where a and b are relatively prime
positive divisors of 1000. What is the greatest integer that does not exceed S/10?
For each positive integer n, let f1 (n) be twice the number of positive integer divi-
sors of n, and for j ≥ 2, let fj (n) = f1 (fj−1 (n)). For how many values of n ≤ 50 is
f50 (n) = 12?
For each positive integer n > 1, let P (n) denote the greatest
√ prime factor of√n. For how
many positive integers n is it true that both P (n) = n and P (n + 48) = n + 48?
Answers
22.1 18
22.2 589
22.3 432
1
22.4 192
22.3.1 23
250
OmegaLearn.org Chapter 22. Primes and Factors
22.3.2 18
22.3.3 9
22.3.4 18
22.3.5 7
22.3.6 37
22.3.7 8
22.3.8 337
22.3.9 040
22.3.10 325
22.3.11 117
22.3.12 10
22.3.13 729
22.3.14 96
22.3.15 12
22.3.16 307
22.3.17 11
22.3.18 0
22.3.19 9
22.3.20 0
22.3.21 231
251
OmegaLearn.org Chapter 22. Primes and Factors
22.3.22 1 : 14
22.3.23 224
22.3.24 41
22.3.25 6
22.3.26 1 : 14
22.3.27 60
22.3.28 $1.65
22.3.29 10
22.3.30 432
22.3.31 prime
22.3.32 407
22.3.33 54
22.3.34 435
22.3.35 248
22.3.36 10
22.3.37 1
252
Chapter 23
Video Lecture
253
OmegaLearn.org Chapter 23. Divisibility & Legendre’s Formula
Video Solution
Video Solution
254
OmegaLearn.org Chapter 23. Divisibility & Legendre’s Formula
Video Solution
A rectangular floor that is 10 feet wide and 17 feet long is tiled with 170 one-foot
square tiles. A bug walks from one corner to the opposite corner in a straight line.
Including the first and the last tile, how many tiles does the bug visit?
Video Solution
How many odd positive 3-digit integers are divisible by 3 but do not contain the digit 3?
Video Solution
(n + 2)! − (n + 1)!
n!
is always which of the following?
(A) a multiple of 4 (B) a multiple of 10 (C) a prime number
(D) a perfect square (E) a perfect cube
Video Solution
255
OmegaLearn.org Chapter 23. Divisibility & Legendre’s Formula
Video Solution
What is that largest positive integer n for which n3 + 100 is divisible by n + 10?
Video Solution
Call a positive integer an uphill integer if every digit is strictly greater than the previous
digit. For example, 1357, 89, 5 are all uphill integers but 32, 1240, 466 are not. How
many uphill integers are divisible by 15?
Video Solution
Additional Problems
Problem 23.1.7 (AMC 10)
The number 21! = 51, 090, 942, 171, 709, 440, 000 has over 60, 000 positive integer di-
256
OmegaLearn.org Chapter 23. Divisibility & Legendre’s Formula
visors. One of them is chosen at random. What is the probability that it is odd?
Call a positive integer an uphill integer if every digit is strictly greater than the previous
digit. For example, 1357, 89, and 5 are all uphill integers, but 32, 1240, and 466 are not.
How many uphill integers are divisible by 15?
Let n denote the smallest positive integer that is divisible by both 4 and 9, and whose
base-10 representation consists of only 4’s and 9’s, with at least one of each. What are
the last four digits of n?
A finite sequence of three-digit integers has the property that the tens and units digits of
each term are, respectively, the hundreds and tens digits of the next term, and the tens
and units digits of the last term are, respectively, the hundreds and tens digits of the
first term. For example, such a sequence might begin with the terms 247, 475, and 756
and end with the term 824. Let S be the sum of all the terms in the sequence. What is
the largest prime factor that always divides S?
257
OmegaLearn.org Chapter 23. Divisibility & Legendre’s Formula
not divisible by 3? (Recall that ⌊x⌋ is the greatest integer less than or equal to x.)
Let a10 = 10, and for each positive integer n > 10 let an = 100an−1 + n. Find the
least positive n > 10 such that an is a multiple of 99.
Define n!! to be n(n − 2)(n − 4) · · · 3 · 1 for n odd and n(n − 2)(n − 4) · · · 4 · 2 for
n even. When
X (2i − 1)!!
2009
i=1 (2i)!!
ab
is expressed as a fraction in lowest terms, its denominator is 2a b with b odd. Find .
10
Answers
23.1 4944
23.2 124
23.3 12
23.1.1 26
23.1.2 96
23.1.4 N A
23.1.5 890
23.1.6 6
258
OmegaLearn.org Chapter 23. Divisibility & Legendre’s Formula
23.1.7 15
1
23.1.8 19
23.1.9 6
23.1.10 9
23.1.11 4944
23.1.12 37
23.1.13 22
23.1.14 45
23.1.15 401
259
Chapter 24
Video Lecture
260
OmegaLearn.org Chapter 24. GCD & LCM
Definition 24.0.1 (Greatest Common Divisor). The Greatest Common Divisor (GCD) of
two or more non-0 integers is the largest positive integer that divides each of the integers.
Note: This is also known as GCF (Greatest Common Factor), and the terms GCF and GCD
are often used interchangeably.
Definition 24.0.2 (Least Common Multiple). The Least Common Multiple (LCM) of two
or more non-0 integers is the smallest positive integer that is divisible by both the numbers.
Concept 24.0.3
GCD/LCM Greatest common divisor of m and n = GCD(m, n) can be found by taking
the lowest prime exponents from the prime factorizations of m and n.
Least common multiple of m and n = LCM (m, n) can be found by taking the high-
est prime exponents from the prime factorizations of m and n.
Theorem 24.0.4
The product of GCD and LCM of two numbers is equal to the product of the two
numbers:
GCD(m, n) · LCM (m, n) = m · n
Theorem 24.0.5
If two numbers have a common factor c, then
Video Solution
261
OmegaLearn.org Chapter 24. GCD & LCM
Remark 24.0.7
We can apply the Euclidean Algorithm multiple times to easily find the GCD of large
numbers since after applying the Euclidean algorithm, we know have 2 smaller numbers
which we can apply the Euclidean Algorithm again until we get 2 very small numbers.
For example,
Video Solution
262
OmegaLearn.org Chapter 24. GCD & LCM
Let a, b, c, and d be positive integers such that gcd(a, b) = 24, gcd(b, c) = 36, gcd(c, d) =
54, and 70 < gcd(d, a) < 100. Which of the following must be a divisor of a?
(A) 5 (B) 7 (C) 11 (D) 13 (E) 17
Video Solution
Video Solution
What is that largest positive integer n for which n3 + 100 is divisible by n + 10?
Video Solution
How many ordered pairs (a, b) of positive integers satisfy the equation
where gcd(a, b) denotes the greatest common divisor of a and b, and lcm(a, b) denotes
their least common multiple?
Video Solution
263
OmegaLearn.org Chapter 24. GCD & LCM
Additional Problems
Problem 24.1.5 (AMC 12)
Let N be the second smallest positive integer that is divisible by every positive in-
teger less than 7. What is the sum of the digits of N ?
There are 10 horses, named Horse 1, Horse 2, . . . , Horse 10. They get their
names from how many minutes it takes them to run one lap around a circular race track:
Horse k runs one lap in exactly k minutes. At time 0 all the horses are together at the
starting point on the track. The horses start running in the same direction, and they
keep running around the circular track at their constant speeds. The least time S > 0,
in minutes, at which all 10 horses will again simultaneously be at the starting point is
S = 2520. Let T > 0 be the least time, in minutes, such that at least 5 of the horses are
again at the starting point. What is the sum of the digits of T ?
a + b + c = 23
and
gcd(a, b) + gcd(b, c) + gcd(c, a) = 9.
What is the sum of all possible distinct values of a2 + b2 + c2 ?
Let N be the second smallest positive integer that is divisible by every positive in-
teger less than 7. What is the sum of the digits of N ?
264
OmegaLearn.org Chapter 24. GCD & LCM
Let n be the smallest positive integer such that n is divisible by 20, n2 is a perfect
cube, and n3 is a perfect square. What is the number of digits of n?
Mary chose an even 4-digit number n. She wrote down all the divisors of n in in-
n
creasing order from left to right: 1, 2, . . . , , n. At some moment Mary wrote 323 as a
2
divisor of n. What is the smallest possible value of the next divisor written to the right
of 323?
How many positive integers n are there such that n is a multiple of 5, and the least
common multiple of 5! and n equals 5 times the greatest common divisor of 10! and n?
For how many ordered pairs of positive integers (x, y), with y < x ≤ 100, are both
x
y
and x+1
y+1
integers?
Let n be the least positive integer greater than 1000 for which
Consider the sequence (ak )k≥1 of positive rational numbers defined by a1 = 2020
2021
and for
k ≥ 1, if ak = m
n
for relatively prime positive integers m and n, then
265
OmegaLearn.org Chapter 24. GCD & LCM
m + 18
ak+1 = .
n + 19
Determine the sum of all positive integers j such that the rational number aj can be
written in the form t+1
t
for some positive integer t.
Find the number of ordered pairs (m, n) such that m and n are positive integers in
the set {1, 2, ..., 30} and the greatest common divisor of 2m + 1 and 2n − 1 is not 1.
Answers
24.1 24
24.2 401
24.1.1 13
24.1.2 −N A−
24.1.3 890
24.1.4 2
24.1.5 3
24.1.6 3
24.1.7 438
24.1.8 13
24.1.9 7
24.1.10 340
266
OmegaLearn.org Chapter 24. GCD & LCM
24.1.11 48
24.1.12 85
24.1.13 18
24.1.14 059
24.1.15 295
267
Chapter 25
Modular Arithmetic
268
OmegaLearn.org Chapter 25. Modular Arithmetic
269
OmegaLearn.org Chapter 25. Modular Arithmetic
270
OmegaLearn.org Chapter 25. Modular Arithmetic
Video Lectures
Modular Arithmetic Euler’s & Binomial Theorems Chinese Remainder Theorem & Line
Definition 25.0.1.
n ≡ a (mod b)
means the number ’n’ leaves the same remainder as ’a’ when divided by b
Theorem 25.0.2
If a = x (mod n) and b ≡ y (mod n), then
ab ≡ xy (mod n)
Theorem 25.0.3
If a ≡ x (mod n), then
am ≡ x m (mod n)
Video Solution
Video Solution
271
OmegaLearn.org Chapter 25. Modular Arithmetic
Video Solution
then
1 1 1
! ! !
ϕ(n) = n · 1 − 1− ... 1 −
p1 p2 pn
where ϕ(n) denotes the number of positive integers less than or equal to n that are
relatively prime to n.
Steps to find totient of a number
aϕ(n) ≡ 1 (mod n)
if and only if
gcd(a, n) = 1
272
OmegaLearn.org Chapter 25. Modular Arithmetic
ap−1 ≡ 1 (mod p)
if an only if p is a prime and
gcd(a, n) = 1
ab ≡ 1 (mod n)
(p − 1)! ≡ p − 1 ≡ −1 (mod p)
Video Solution
273
OmegaLearn.org Chapter 25. Modular Arithmetic
Video Solution
x ≡ a1 (mod n1 )
x ≡ a2 (mod n2 )
..
.
x ≡ ak (mod nk )
where all ni are relatively prime, then x has a unique solution (mod n1 · n2 · n3 . . . nk )
Remark 25.0.12
Be careful! This may not necessarily be true if any ni share common factors as then
congruences might contradict each other.
• Guess and Check until you reach a value that works and satisfies both mods
• Algebraic Method
1. Find 2 congruences
n ≡ r1 (mod m1 )
n ≡ r2 (mod m2 )
such that m1 and m2 are relatively prime
2. Rewrite them algebraically
n = k(m1 ) + r1
274
OmegaLearn.org Chapter 25. Modular Arithmetic
n = j(m2 ) + r2
3. Set them equal mod the smaller of m1 and m2 (in this case, say m1 < m2 )
k −1 (mod m2 )
n = k(m1 ) + r1
Concept 25.0.14
The solution to
n ≡ r1 (mod m1 )
n ≡ r2 (mod m2 )
is
n ≡ r1 + m1 (r2 − r1 ) · i
where i ≡ m−1
1 (mod m2 )
Remark 25.0.15
To solve a general congruence of more than 2 congruences, just solve them 2 at a time
until you are left with just 1 congruence.
Example 25.6
Find the smallest positive integer greater than 100 that leaves a remainder of 5 when
divided by 9 and leaves a remainder of 4 when divided by 17.
Video Solution
275
OmegaLearn.org Chapter 25. Modular Arithmetic
Video Solution
Video Solution
Problem 25.1.2
Video Solution
Problem 25.1.3
Video Solution
276
OmegaLearn.org Chapter 25. Modular Arithmetic
Video Solution
Video Solution
Problem 25.1.6
Find the smallest positive number that leaves a remainder of 11 when divided by
13 and a remainder of 2 when divided by 5.
Video Solution
Video Solution
Which of the following expressions is never a prime number when p is a prime number?
(A) p2 + 16 (B) p2 + 24 (C) p2 + 26 (D) p2 + 46 (E) p2 + 96
Video Solution
277
OmegaLearn.org Chapter 25. Modular Arithmetic
Let S(n) equal the sum of the digits of positive integer n. For example, S(1507) = 13.
For a particular positive integer n, S(n) = 1274. Which of the following could be the
value of S(n + 1)?
Video Solution
a1 + a2 + · · · + a2018 = 20182018 .
Video Solution
How many of the first 2018 numbers in the sequence 101, 1001, 10001, 100001, . . . are
divisible by 101?
a1 + a2 + · · · + a2018 = 20182018 .
278
OmegaLearn.org Chapter 25. Modular Arithmetic
Video Solution
One of the following numbers is not divisible by any prime number less than 10. Which
is it? (A) 2606 − 1 (B) 2606 + 1 (C) 2607 − 1 (D) 2607 + 1 (E) 2607 + 3607
Video Solution
k=0
Suppose 7Sn ≡ 1 (mod 2 ) for all n ≥ 1. What is the value of the sum
n
Video Solution
Additional Problems
Problem 25.1.17 (AMC 10)
279
OmegaLearn.org Chapter 25. Modular Arithmetic
(A) 21002 (B) 21003 (C) 21004 (D) 21005 (E) 21006
Let n be a 5-digit number, and let q and r be the quotient and the remainder, re-
spectively, when n is divided by 100. For how many values of n is q + r divisible by
11?
How many distinct four-digit numbers are divisible by 3 and have 23 as their last
two digits?
For positive integers N and k, define N to be k-nice if there exists a positive inte-
ger a such that ak has exactly N positive divisors. Find the number of positive integers
less than 1000 that are neither 7-nice nor 8-nice.
Let S be the set of integers between 1 and 240 whose binary expansions have exactly two
1’s. If a number is chosen at random from S, the probability that it is divisible by 9 is
p/q, where p and q are relatively prime positive integers. Find p + q.
280
OmegaLearn.org Chapter 25. Modular Arithmetic
The number obtained from the last two nonzero digits of 90! is equal to n. What
is n?
Answers
25.1 109
25.2 13
25.3 6
25.4 035
25.5 6
25.6 140
25.7 937
25.1.1 1
25.1.2 −1
25.1.3 343
4
25.1.4 5
25.1.5 15
25.1.6 37
25.1.7 0
281
OmegaLearn.org Chapter 25. Modular Arithmetic
25.1.8 0
25.1.10 1239
25.1.11 4
25.1.12 505
25.1.13 4
25.1.14 9
25.1.15 2607 − 1
25.1.16 6
25.1.17 4
25.1.18 21005
25.1.19 8181
25.1.20 30
25.1.21 749
25.1.22 913
25.1.23 112
25.1.24 239
25.1.25 12
282
Chapter 26
Video Lecture
283
OmegaLearn.org Chapter 26. Algebraic Number Theory
2. Group terms
Video Solution
x2 − y 2 = (x − y)(x + y)
284
OmegaLearn.org Chapter 26. Algebraic Number Theory
Video Solution
Video Solution
xy + kx + jy + jk = (x + j)(y + k)
Remark 26.3.2
You can generally apply this factorization when you have xy, x, and y terms. After
applying the factorization, you can then find all possible values for each of your terms in
your factorization (remember negatives!).
285
OmegaLearn.org Chapter 26. Algebraic Number Theory
Note: The signs in the second term alternate between positive and negative
Remark 26.5.2
Be on the lookout for 4th powers to apply Sophie Germain’s Identity!
286
OmegaLearn.org Chapter 26. Algebraic Number Theory
There is a positive integer n such that (n + 1)! + (n + 2)! = n! · 440. What is the
sum of the digits of n?
Video Solution
(n + 2)! − (n + 1)!
n!
is always which of the following?
(A) a multiple of 4 (B) a multiple of 10 (C) a prime number
(D) a perfect square (E) a perfect cube
Video Solution
Let S(n) equal the sum of the digits of positive integer n. For example, S(1507) = 13.
For a particular positive integer n, S(n) = 1274. Which of the following could be the
value of S(n + 1)?
Video Solution
What is the greatest three-digit positive integer n for which the sum of the first n
positive integers is not a divisor of the product of the first n positive integers?
Video Solution
287
OmegaLearn.org Chapter 26. Algebraic Number Theory
1.a b a b . . . = 1.a b,
where a and b are digits, he did not notice the notation and just multiplied 66 times
1.a b. Later he found that his answer is 0.5 less than the correct answer. What is the
2-digit number a b?
Video Solution
Video Solution
Compute
(104 + 324)(224 + 324)(344 + 324)(464 + 324)(584 + 324)
.
(44 + 324)(164 + 324)(284 + 324)(404 + 324)(524 + 324)
Video Solution
Video Solution
288
OmegaLearn.org Chapter 26. Algebraic Number Theory
Video Solution
The ages of Jonie’s four cousins are distinct single-digit positive integers. Two of
the cousins ages multiplied together give 24, while the other two multiply to 30. What is
the sum of the ages of Jonie’s four cousins?
Video Solution
Let f be a function defined on the set of positive rational numbers with the prop-
erty that f (a · b) = f (a) + f (b) for all positive rational numbers a and b. Suppose that f
as have the property that f (p) = p for every prime number p. For which of the following
numbers x is f (x) < 0?
Video Solution
Grandma has just finished baking a large rectangular pan of brownies. She is plan-
ning to make rectangular pieces of equal size and shape, with straight cuts parallel to
the sides of the pan. Each cut must be made entirely across the pan. Grandma wants to
make the same number of interior pieces as pieces along the perimeter of the pan. What
is the greatest possible number of brownies she can produce?
289
OmegaLearn.org Chapter 26. Algebraic Number Theory
Video Solution
Additional Problems
Problem 26.6.13 (AMC 10)
Consider the set of all fractions xy , where x and y are relatively prime positive in-
tegers. How many of these fractions have the property that if both numerator and
denominator are increased by 1, the value of the fraction is increased by 10%?
Three clever monkeys divide a pile of bananas. The first monkey takes some bananas
from the pile, keeps three-fourths of them, and divides the rest equally between the
other two. The second monkey takes some bananas from the pile, keeps one-fourth of
them, and divides the rest equally between the other two. The third monkey takes the
remaining bananas from the pile, keeps one-twelfth of them, and divides the rest equally
between the other two. Given that each monkey receives a whole number of bananas
whenever the bananas are divided, and the numbers of bananas the first, second, and
third monkeys have at the end of the process are in the ratio 3 : 2 : 1,what is the least
possible total for the number of bananas?
There exists a unique strictly increasing sequence of nonnegative integers a1 < a2 < · · · <
ak such that
2289 + 1
= 2a1 + 2a2 + · · · + 2ak .
217 + 1
What is k?
n
For how many integers n is the square of an integer?
20 − n
290
OmegaLearn.org Chapter 26. Algebraic Number Theory
For k > 0, let Ik = 10 . . . 064, where there are k zeros between the 1 and the 6.
Let N (k) be the number of factors of 2 in the prime factorization of Ik . What is the
maximum value of N (k)?
(A) 6 (B) 7 (C) 8 (D) 9 (E) 10
Two fair dice, each with at least 6 faces are rolled. On each face of each dice is printed
a distinct integer from 1 to the number of faces on that die, inclusive. The probability
of rolling a sum of 7 is 34 of the probability of rolling a sum of 10, and the probability
of rolling a sum of 12 is 12
1
. What is the least possible number of faces on the two dice
combined?
How many ordered pairs (m, n) of positive integers, with m ≥ n, have the property that
their squares differ by 96?
For how many positive integers n less than or equal to 24 is n! evenly divisible by
1 + 2 + · · · + n?
291
OmegaLearn.org Chapter 26. Algebraic Number Theory
Let S be the set of all perfect squares whose rightmost three digits in base 10 are
256. Let T be the set of all numbers of the form x−256
1000
, where x is in S. In other words,
T is the set of numbers that result when the last three digits of each number in S are
truncated. Find the remainder when the tenth smallest element of T is divided by 1000.
For each integer n ≥ 2, let Sn be the sum of all products jk, where j and k are
integers and 1 ≤ j < k ≤ n. What is the sum of the 10 least values of n such that Sn is
divisible by 3?
Answers
26.1 200
26.2 33
26.3 239
26.4 2
26.6.1 10
26.6.3 1239
292
OmegaLearn.org Chapter 26. Algebraic Number Theory
26.6.4 996
26.6.5 75
26.6.6 201
26.6.7 373
26.6.8 (E, O, E)
26.6.10 22
25
26.6.11 11
26.6.12 60
26.6.13 1
26.6.14 408
26.6.15 137
26.6.16 4
26.6.17 2
26.6.18 7
26.6.19 17
26.6.20 4
26.6.21 16
26.6.22 170
26.6.23 197
26.6.24 181
293
Chapter 27
Diophantine Equations
Video Lecture
294
OmegaLearn.org Chapter 27. Diophantine Equations
Definition 27.0.1. A Diophantine equation is a polynomial equation such that the only
solutions are integers (i.e. all variables have integer values).
• Bound the possible values of different terms, generally useful when there are a
finite number of solutions to your Diophantine equations
• Factoring, using the various factorizations (see the algebra section on this), can
help find all the solutions
Video Solution
Video Solution
295
OmegaLearn.org Chapter 27. Diophantine Equations
Video Solution
Video Solution
x2020 + y 2 = 2y?
Video Solution
a3 − b 3 73
Let a and b be relatively prime positive integers with a > b > 0 and = .
(a − b) 3 3
What is a − b?
Video Solution
296
OmegaLearn.org Chapter 27. Diophantine Equations
Find 3x2 y 2 if x and y are integers such that y 2 + 3x2 y 2 = 30x2 + 517.
Video Solution
How many ordered pairs of positive integers (b, c) exist where both x2 + bx + c = 0 and
x2 + cx + b = 0 do not have distinct, real solutions?
Video Solution
There is a prime number p such that 16p + 1 is the cube of a positive integer. Find p.
Video Solution
Determine all non-negative integral solutions (n1 , n2 , . . . , n14 ) if any, apart from per-
mutations, of the Diophantine Equation n41 + n42 + · · · + n414 = 1599.
Video Solution
297
OmegaLearn.org Chapter 27. Diophantine Equations
Video Solution
Two distinct numbers are selected from the set {1, 2, 3, 4, . . . , 36, 37} so that the sum of
the remaining 35 numbers is the product of these two numbers. What is the difference of
these two numbers?
Video Solution
Hiram’s algebra notes are 50 pages long and are printed on 25 sheets of paper; the
first sheet contains pages 1 and 2, the second sheet contains pages 3 and 4, and so on.
One day he leaves his notes on the table before leaving for lunch, and his roommate
decides to borrow some pages from the middle of the notes. When Hiram comes back, he
discovers that his roommate has taken a consecutive set of sheets from the notes and
that the average (mean) of the page numbers on all remaining sheets is exactly 19. How
many sheets were borrowed?
Video Solution
Additional Problems
Problem 27.1.11 (AMC 10)
Two farmers agree that pigs are worth 300 dollars and that goats are worth 210 dollars.
When one farmer owes the other money, he pays the debt in pigs or goats, with ”change”
received in the form of goats or pigs as necessary. (For example, a 390 dollar debt could
be paid with two pigs, with one goat received in change.) What is the amount of the
smallest positive debt that can be resolved in this way?
298
OmegaLearn.org Chapter 27. Diophantine Equations
How many triples (a, b, c) of positive integers which satisfy the simultaneous equations
ab + bc = 44
ac + bc = 23?
One of Euler’s conjectures was disproved in the 1960s by three American mathematicians
when they showed there was a positive integer such that
Find the largest possible value of k for which 311 is expressible as the sum of k consecutive
positive integers.
For some integer m, the polynomial x3 − 2011x + m has the three integer roots a,
b, and c. Find |a| + |b| + |c|.
Let m ≥ 5 be an odd integer, and let D(m) denote the number of quadruples (a1 , a2 , a3 , a4 )
of distinct integers with 1 ≤ ai ≤ m for all i such that m divides a1 + a2 + a3 + a4 . There
is a polynomial
q(x) = c3 x3 + c2 x2 + c1 x + c0
such that D(m) = q(m) for all odd integers m ≥ 5. What is c1 ?
299
OmegaLearn.org Chapter 27. Diophantine Equations
Answers
27.1 6
27.2 80
27.3 757
27.1.1 26
27.1.2 4
27.1.3 3
27.1.4 588
27.1.5 6
27.1.6 307
27.1.7 N ointegralsolutions
27.1.8 206
27.1.9 10
27.1.10 13
27.1.11 30
27.1.12 2
27.1.13 144
27.1.14 486
27.1.15 98
27.1.16 11
300
Chapter 28
Bases
Video Lecture
301
OmegaLearn.org Chapter 28. Bases
Definition 28.0.1 (Bases). A number expressed in base-n is similar to base 10 except instead
of regrouping to a new place value every 10, we regroup every n.
Concept 28.0.2
A number in base n with digits am , am−1 , . . . , a2 , a1 , a0 can be written as:
am am−1 . . . a2 a1 a0
am nm + am−1 nm−1 + · · · + a2 n2 + a1 n1 + a0 n0
Video Solution
Video Solution
Video Solution
302
OmegaLearn.org Chapter 28. Bases
Concept 28.0.3
We can also have bases with decimals (both repeating and terminal).
Video Solution
303
OmegaLearn.org Chapter 28. Bases
In base 10, the number 2013 ends in the digit 3. In base 9, on the other hand, the same
number is written as (2676)9 and ends in the digit 6. For how many positive integers b
does the base-b-representation of 2013 end in the digit 3?
Video Solution
Hexadecimal (base-16) numbers are written using numeric digits 0 through 9 as well
as the letters A through F to represent 10 through 15. Among the first 1000 positive
integers, there are n whose hexadecimal representation contains only numeric digits.
What is the sum of the digits of n?
Video Solution
For each positive integer n, let f (n) be the sum of the digits in the base-four representa-
tion of n and let g(n) be the sum of the digits in the base-eight representation of f (n).
For example, f (2020) = f (1332104 ) = 10 = 128 , and g(2020) = the digit sum of 128 = 3.
Let N be the least value of n such that the base-sixteen representation of g(n) cannot be
expressed using only the digits 0 through 9. Find the remainder when N is divided by
1000.
Video Solution
304
OmegaLearn.org Chapter 28. Bases
Video Solution
For which of the following integers b is the base-b number 2021b − 221b not divisible by 3?
Video Solution
Let n be a positive integer and d be a digit such that the value of the numeral 32d in
base n equals 263, and the value of the numeral 324 in base n equals the value ¯of¯¯the
numeral 11d1 in base six. What is n + d? ¯¯¯
¯¯¯¯
Video Solution
Additional Problems
Problem 28.1.7 (AMC 10)
Let n be a positive integer and d be a digit such that the value of the numeral 32d in
base n equals 263, and the value of the numeral 324 in base n equals the value of the
numeral 11d1 in base six. What is n + d?
For which of the following integers b is the base-b number 2021b − 221b not divisible by 3?
What is the greatest possible sum of the digits in the base-seven representation of
305
OmegaLearn.org Chapter 28. Bases
In the equation below, A and B are consecutive positive integers, and A, B, and
A + B represent number bases:
What is A + B?
Call a positive integer N a 7-10 double if the digits of the base-7 representation of
N form a base-10 number that is twice N . For example, 51 is a 7-10 double because its
base-7 representation is 102. What is the largest 7-10 double?
Let N be the number of positive integers that are less than or equal to 2003 and
whose base-2 representation has more 1’s than 0’s. Find the remainder when N is divided
by 1000.
A rational number written in base eight is ab.cd, where all digits are nonzero. The
same number in base twelve is bb.ba. Find the base-ten number abc.
306
OmegaLearn.org Chapter 28. Bases
Find the number of positive integers less than or equal to 2017 whose base-three repre-
sentation contains no digit equal to 0.
Find the sum of all positive integers b < 1000 such that the base-b integer 36b is a
perfect square and the base-b integer 27b is a perfect cube.
There exist r unique nonnegative integers n1 > n2 > · · · > nr and r unique integers ak
(1 ≤ k ≤ r) with each ak either 1 or −1 such that
Find n1 + n2 + · · · + nr .
For each positive integer n, let f (n) be the sum of the digits in the base-four representa-
tion of n and let g(n) be the sum of the digits in the base-eight representation of f (n).
For example, f (2020) = f (1332104 ) = 10 = 128 , and g(2020) = the digit sum of 128 = 3.
307
OmegaLearn.org Chapter 28. Bases
Let N be the least value of n such that the base-sixteen representation of g(n) cannot be
expressed using only the digits 0 through 9. Find the remainder when N is divided by
1000.
Bernardo chooses a three-digit positive integer N and writes both its base-5 and base-6
representations on a blackboard. Later LeRoy sees the two numbers Bernardo has written.
Treating the two numbers as base-10 integers, he adds them to obtain an integer S. For
example, if N = 749, Bernardo writes the numbers 10,444 and 3,245, and LeRoy obtains
the sum S = 13,689. For how many choices of N are the two rightmost digits of S, in
order, the same as those of 2N ?
Answers
28.1 3
28.2 227
28.3 0.7
28.4 16
28.1.1 13
28.1.2 21
28.1.3 151
28.1.4 621
28.1.5 8
28.1.6 11
28.1.7 11
308
OmegaLearn.org Chapter 28. Bases
28.1.8 8
28.1.9 22
28.1.10 13
28.1.11 925
28.1.12 315
28.1.13 155
28.1.14 321
28.1.15 222
28.1.16 925
28.1.17 371
28.1.18 621
28.1.19 21
28.1.20 151
28.1.21 25
309
Chapter 29
Video Lecture
310
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
29.1 Palindromes
Definition 29.1.1. A palindrome is a number that reads the same forward and backward.
(a − 1)(b − 1)
2
positive integers which cannot be expressed in the form ma + nb where m and n are
positive integers.
Remark 29.2.2
This theorem is useful in finding solutions to problems like ”the maximum amount of
money that can’t be created with 3 cent and 5 cent coins”.
311
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
312
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
Suppose
1 144
2+ = .
1+ 1
2
2+ 3+x
53
Video Solution
Driving along a highway, Megan noticed that her odometer showed 15951 (miles). This
number is a palindrome-it reads the same forward and backward. Then 2 hours later, the
odometer displayed the next higher palindrome. What was her average speed, in miles
per hour, during this 2-hour period?
Video Solution
A palindrome, such as 83438, is a number that remains the same when its digits are re-
versed. The numbers x and x + 32 are three-digit and four-digit palindromes, respectively.
What is the sum of the digits of x?
Video Solution
Mr. Zhou places all the integers from 1 to 225 into a 15 by 15 grid. He places 1
in the middle square (eighth row and eighth column) and places other numbers one by
one clockwise, as shown in part in the diagram below. What is the sum of the greatest
number and the least number that appear in the second row from the top?
313
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
Video Solution
314
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
Let d(n) denote the number of positive integers that divide n, including 1 and n. For
example, d(1) = 1, d(2) = 2, and d(12) = 6. (This function is known as the divisor
function.) Let
d(n)
f (n) = 3 √ .
n
There is a unique positive integer N such that f (N ) > f (n) for all positive integers
n ̸= N . What is the sum of the digits of N ?
Video Solution
Additional Problems
Problem 29.3.6 (AMC 10/12)
A palindrome between 1000 and 10, 000 is chosen at random. What is the probability
that it is divisible by 7?
How many 7-digit palindromes (numbers that read the same backward as forward)
can be formed using the digits 2, 2, 3, 3, 5, 5, 5?
A palindrome is a nonnegative integer number that reads the same forwards and back-
wards when written in base 10 with no leading zeros. A 6-digit palindrome n is chosen
uniformly at random. What is the probability that 11
n
is also a palindrome?
Joey and Chloe and their daughter Zoe all have the same birthday. Joey is 1 year
315
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
older than Chloe, and Zoe is exactly 1 year old today. Today is the first of the 9 birthdays
on which Chloe’s age will be an integral multiple of Zoe’s age. What will be the sum of
the two digits of Joey’s age the next time his age is a multiple of Zoe’s age?
Video Solution
Ninety-four bricks, each measuring 4′′ × 10′′ × 19′′ , are to be stacked one on top of
another to form a tower 94 bricks tall. Each brick can be oriented so it contributes 4′′ or
10′′ or 19′′ to the total height of the tower. How many different tower heights can be
achieved using all ninety-four of the bricks?
Let N be the positive integer 7777 . . . 777, a 313-digit number where each digit is a
7. Let f (r) be the leading digit of the rth root of N . What is
Find the sum of all positive integers n such that, given an unlimited supply of stamps
of denominations 5, n, and n + 1 cents, 91 cents is the greatest postage that cannot be
formed.
Answers
29.1 550
29.2 47
29.3 991
3
29.3.1 4
316
OmegaLearn.org Chapter 29. Miscellaneous Number Theory
29.3.2 55
29.3.3 24
29.3.4 367
29.3.5 9
1
29.3.6 5
29.3.7 6
11
29.3.8 30
29.3.9 11
29.3.10 465
29.3.11 8
29.3.12 071
317
Geometry
318
Chapter 30
Angle Chasing
Video Lecture
319
OmegaLearn.org Chapter 30. Angle Chasing
320
OmegaLearn.org Chapter 30. Angle Chasing
321
OmegaLearn.org Chapter 30. Angle Chasing
B
C E
Video Solution
322
OmegaLearn.org Chapter 30. Angle Chasing
C B
Video Solution
323
OmegaLearn.org Chapter 30. Angle Chasing
Theorem 30.1.5
(n − 2)
Interior angle of a regular polygon = · 180
n
360
Exterior angle of a regular polygon =
n
324
OmegaLearn.org Chapter 30. Angle Chasing
Definition 30.1.9 (Chord). A Chord is a line segment between any two distinct points on
the circle. The diameter of the circle is the longest chord in the circle.
Theorem 30.1.10
The perpendicular bisector of any chord passes through the center. In the figure below,
the perpendicular bisectors of AB and CD intersect at the center O.
325
OmegaLearn.org Chapter 30. Angle Chasing
Corollary 30.1.11 • Congruent chords are equidistant from the center of a circle.
• If two chords in a circle are congruent, then their intercepted arcs are congruent.
• If two chords in a circle are congruent, then they determine two central angles that
are congruent.
Theorem 30.1.12
The angle marked in the diagram is half of the difference of the 2 red arcs.
⌢ ⌢
BD − AC
∠AP C =
2
326
OmegaLearn.org Chapter 30. Angle Chasing
Theorem 30.1.13
If two chords AB and CD intersect at P, then the ∠BP C and ∠AP D are equal to the
average of the two arcs.
⌢ ⌢
BC + AD
∠BP C = ∠AP D =
2
Theorem 30.1.14
If a tangent R intersects the circle at Q, and a chord QP is drawn, then the ∠RQP is
equal to half the arc angle
Remark 30.1.15
Circles are really useful for angle chasing so keep an eye out for the inscribed arc theorem
327
OmegaLearn.org Chapter 30. Angle Chasing
Remark 30.1.16
A useful trick to solving angle chasing problems with regular polygons is to draw a circle
around the polygon and use the inscribed arc theorem.
Theorem 30.1.17
Equal chords mark out equal arcs
This basically means that if you have 2 chords of the same length, the sector of the circle
they mark out will be equal
Definition 30.1.18 (Tangent). A tangent is any line from a point external to the circle that
just touches the circle.
Remark 30.1.20
This property is very useful in circle problems as it allows us to work with right angles.
In addition, another helpful technique is drawing useful radii to various points in your
diagram as that opens up new information to work with.
328
OmegaLearn.org Chapter 30. Angle Chasing
F D
B E A
Video Solution
329
OmegaLearn.org Chapter 30. Angle Chasing
Video Solution
Two congruent circles centered at points A and B each pass through the other cir-
cle’s center. The line containing both A and B is extended to intersect the circles at
points C and D. The circles intersect at two points, one of which is E. What is the degree
measure of ∠CED?
Video Solution
A square is located in the interior of a regular hexagon, and certain vertices are la-
beled as shown. What is the degree measure of ∠ABC?
330
OmegaLearn.org Chapter 30. Angle Chasing
Video Solution
In the given circle, the diameter EB is parallel to DC, and AB is parallel to ED.
The angles AEB and ABE are in the ratio 4 : 5. What is the degree measure of angle
BCD?
E O B
D C
Video Solution
331
OmegaLearn.org Chapter 30. Angle Chasing
Video Solution
Additional Problems
Problem 30.2.6 (AHSME)
△ABC is isosceles with base AC. Points P and Q are respectively in CB and AB
and such that AC = AP = P Q = QB. The number of degrees in ∠B is:
In this diagram AB and AC are the equal sides of an isosceles △ABC, in which is
inscribed equilateral △DEF . Designate ∠BF D by a, ∠ADE by b, and ∠F EC by c.
Then:
332
OmegaLearn.org Chapter 30. Angle Chasing
A
E
D b c
a
B F C
(A) b = a+c
2
(B) b = a−c
2
(C) a = b−c
2
(D) a = b+c
2
(E) none of these
How many non-similar triangles have angles whose degree measures are distinct positive
integers in arithmetic progression?
Concave quadrilateral ABCD is symmetric about the line AC. The measures of an-
gles DAB and ABC are 84 degrees and 32 degrees, respectively. The dashed line segments
bisect angles ABC and ADC. What is the degree measure of the acute angle at which
the two dashed line segments intersect?
333
OmegaLearn.org Chapter 30. Angle Chasing
As shown in the figure below, point E lies on the opposite half-plane determined by line
CD from point A so that ∠CDE = 110◦ . Point F lies on AD so that DE = DF , and
ABCD is a square. What is the degree measure of ∠AF E?
E
A F
D
110◦
B C
In the adjoining figure, ABCD is a square, ABE is an equilateral triangle and point E
is outside square ABCD. What is the measure of ∡AED in degrees?
A
D
C
B
334
OmegaLearn.org Chapter 30. Angle Chasing
Video Solution
The angles of quadrilateral ABCD satisfy ∠A = 2∠B = 3∠C = 4∠D. What is the
degree measure of ∠A, rounded to the nearest whole number?
The sum of two angles of a triangle is 65 of a right angle, and one of these two an-
gles is 30◦ larger than the other. What is the degree measure of the largest angle in the
triangle?
Mary divides a circle into 12 sectors. The central angles of these sectors, measured
in degrees, are all integers and they form an arithmetic sequence. What is the degree
measure of the smallest possible sector angle?
335
OmegaLearn.org Chapter 30. Angle Chasing
336
OmegaLearn.org Chapter 30. Angle Chasing
Quadrilateral ABCD has AB = BC = CD, angle ABC = 70 and angle BCD = 170.
What is the measure of angle BAD?
A beam of light strikes BC at point C with angle of incidence α = 19.94◦ and re-
flects with an equal angle of reflection as shown. The light beam continues its path,
reflecting off line segments AB and BC according to the rule: angle of incidence equals
angle of reflection. Given that β = α/10 = 1.994◦ and AB = BC, determine the number
of times the light beam will bounce off the two line segments. Include the first reflection
at C in your count.
Answers
30.1 90°
30.2 547
30.3 110
30.2.1 55
30.2.2 120
30.2.3 45
337
OmegaLearn.org Chapter 30. Angle Chasing
30.2.4 130
30.2.5 100°
30.2.6 25 57
30.2.7 a = b+c
2
30.2.8 59
30.2.9 64
30.2.10 170
30.2.11 15
30.2.12 173
30.2.13 72
30.2.14 8
3π
30.2.15 7
30.2.16 83
30.2.17 85
30.2.18 071
338
Chapter 31
Video Lecture
339
OmegaLearn.org Chapter 31. Triangle Area and Length
340
OmegaLearn.org Chapter 31. Triangle Area and Length
Definition 31.1.3 (Incenter). The incenter of a triangle is the intersection of all the angle
bisectors. This point is also the center of the incircle, and equidistant from all the three sides.
Definition 31.1.4 (In-radius). The inradius of a triangle is the radius of the inscribed circle
in the triangle.
Theorem 31.1.5
Inradius r of a right triangle:
1
r = (a + b − c)
2
where a and b are the legs of the triangle, and c is the hypotenuse.
Remark 31.1.7
Note that if we know the area of the triangle and it’s semi-perimeter, we can apply the
inradius formula to find the inradius of the triangle.
341
OmegaLearn.org Chapter 31. Triangle Area and Length
Remark 31.1.11
Similar to the inradius problem, if we know all 3 sides of a triangle, we can apply Heron’s
and easily calculate the circumradius of the triangle.
342
OmegaLearn.org Chapter 31. Triangle Area and Length
1
A= |(a1 b2 + a2 b3 + · · · + an b1 ) − (b1 a2 + b2 a3 + · · · + bn a1 )|
2
You can also go counterclockwise order, as long as you find the absolute value of the
answer.
The Shoelace Theorem gets its name because if one lists the coordinates in a column,
(a1 , b1 )
(a2 , b2 )
..
.
(an , bn )
(a1 , b1 )
5. Find
1
|A − B|
2
343
OmegaLearn.org Chapter 31. Triangle Area and Length
344
OmegaLearn.org Chapter 31. Triangle Area and Length
84
35
40 30
A B
Video Solution
345
OmegaLearn.org Chapter 31. Triangle Area and Length
C A
Theorem 31.2.4
The centroid of a triangle is on the median and it is 2
3
of the way from from one of
vertices to the midpoint of the opposite side.
Definition 31.2.5 (Cevian). A cevian is any line from any vertex of a triangle to the opposite
side. Medians and angle bisectors are special cases of cevians.
346
OmegaLearn.org Chapter 31. Triangle Area and Length
Video Solution
Video Solution
347
OmegaLearn.org Chapter 31. Triangle Area and Length
Remark 31.2.7
A way to remember this is the saying ”A Man and his Dad put a Bomb in the Sink
Note that this follows from Stewart’s Theorem and the Angle Bisector Theorem.
Corollary 31.2.9 (Stewart’s Theorem For Medians)
If AD is a median, then d2 = 12 (b2 + c2 ) − 41 a2
1 7
1
1
7 1
Video Solution
Triangle ABC has a right angle at B. Point D is the foot of the altitude from B,
AD = 3, and DC = 4. What is the area of △ABC?
348
OmegaLearn.org Chapter 31. Triangle Area and Length
A
B C
Video Solution
The figure below shows a square and four equilateral triangles, with each triangle
having a side lying on a side of the square, such that each triangle has side length 2 and
the third vertices of the triangles meet at the center of the square. The region inside the
square but outside the triangles is shaded. What is the area of the shaded region?
349
OmegaLearn.org Chapter 31. Triangle Area and Length
Video Solution
U V
M C
Video Solution
Points P and Q lie in a plane with P Q = 8. How many locations for point R in
this plane are there such that the triangle with vertices P , Q, and R is a right triangle
with area 12 square units?
Video Solution
350
OmegaLearn.org Chapter 31. Triangle Area and Length
A E B
D F C
Video Solution
Additional Problems
Problem 31.3.7 (AMC 10)
Given a triangle with side lengths 15, 20, and 25, find the triangle’s shortest altitude.
A triangle with side lengths in the ratio 3 : 4 : 5 is inscribed in a circle with radius 3.
What is the area of the triangle?
351
OmegaLearn.org Chapter 31. Triangle Area and Length
√
The two legs of a right triangle, which are altitudes, have lengths 2 3 and 6. How
long is the third altitude of the triangle?
Triangle ABC has AB = 13 and AC = 15, and the altitude to BC has length 12.
What is the sum of the two possible values of BC?
A triangle has side lengths 10, 10, and 12. A rectangle has width 4 and area equal to the
area of the triangle. What is the perimeter of this rectangle?
How many noncongruent integer-sided triangles with positive area and perimeter less
than 15 are neither equilateral, isosceles, nor right triangles?
Isosceles triangles T and T ′ are not congruent but have the same area and the same
perimeter. The sides of T have lengths 5, 5, and 8, while those of T ′ have lengths a, a,
and b. Which of the following numbers is closest to b?
352
OmegaLearn.org Chapter 31. Triangle Area and Length
A D F B
Points P and Q lie in a plane with P Q = 8. How many locations for point R in
this plane are there such that the triangle with vertices P , Q, and R is a right triangle
with area 12 square units?
Triangle ABC has AB = 9 and BC : AC = 40 : 41. What’s the largest area that
this triangle can have?
Through a point on the hypotenuse of a right triangle, lines are drawn parallel to
353
OmegaLearn.org Chapter 31. Triangle Area and Length
the legs of the triangle so that the triangle is divided into a square and two smaller right
triangles. The area of one of the two small right triangles is m times the area of the
square. The ratio of the area of the other small right triangle to the area of the square is
(A) 1
2m+1
(B) m (C) 1 − m (D) 1
4m
(E) 1
8m2
A triangle is partitioned into three triangles and a quadrilateral by drawing two lines
from vertices to their opposite sides. The areas of the three triangles are 3, 7, and 7, as
shown. What is the area of the shaded quadrilateral?
7
3
7
A
14
E
19
28
D
6
B C
354
OmegaLearn.org Chapter 31. Triangle Area and Length
Let ABCD be a unit square. Let Q1 be the midpoint of CD. For i = 1, 2, . . . , let
Pi be the intersection of AQi and BD, and let Qi+1 be the foot of the perpendicular
from Pi to CD. What is
∞
Area of △DQi Pi ?
X
i=1
Answers
31.1 315
√
3
31.2
3
31.3 30
31.3.1 6 12
√
31.3.2 7 3
√
31.3.3 12 − 4 3
31.3.4 96
31.3.5 8
10
31.3.6 91
31.3.7 12
31.3.8 8.64
31.3.9 3
31.3.10 18
31.3.11 32
355
OmegaLearn.org Chapter 31. Triangle Area and Length
31.3.12 5
28
31.3.13 3
31.3.14 3
21
31.3.15
13
31.3.16 8
31.3.17 420
1
31.3.18 4m
31.3.19 18
19
31.3.20 56
1
31.3.21 4
356
Chapter 32
Special Triangles
Video Lecture
357
OmegaLearn.org Chapter 32. Special Triangles
Theorem 32.1.1
If the side length of an equilateral triangle is a
√
3
Height of the triangle = a
2
358
OmegaLearn.org Chapter 32. Special Triangles
c 2 = a2 + b 2
a c
C b A
If all numbers in a pythagorean triple are multiplied by a constant, the resulting num-
bers still form a pythagorean triple.
359
OmegaLearn.org Chapter 32. Special Triangles
Video Solution
360
OmegaLearn.org Chapter 32. Special Triangles
1 1
Area of the triangle = × side length2 = a2
2 2
361
OmegaLearn.org Chapter 32. Special Triangles
√ √
3 3 2
Area = × short leg2 = a
2 2
362
OmegaLearn.org Chapter 32. Special Triangles
24
30◦
30◦ 45◦
A D B
Video Solution
363
OmegaLearn.org Chapter 32. Special Triangles
364
OmegaLearn.org Chapter 32. Special Triangles
Video Solution
365
OmegaLearn.org Chapter 32. Special Triangles
B D C
Video Solution
Additional Problems
Problem 32.3.3 (AIME)
366
OmegaLearn.org Chapter 32. Special Triangles
B
A C
How many non-congruent right triangles with positive integer leg lengths have areas that
are numerically equal to 3 times their perimeters?
367
OmegaLearn.org Chapter 32. Special Triangles
2 4
1 3 5
Suppose that △ABC is an equilateral triangle of side length s, with the property
√
that there is a unique point P inside the triangle such that AP = 1, BP = 3, and
CP = 2. What is s?
368
OmegaLearn.org Chapter 32. Special Triangles
Answers
32.1 26
32.2 291
32.3.1 37 : 1
√
5−1
32.3.2 2
32.3.3 084
32.3.4 20
32.3.5 6
32.3.6 9
32.3.8 17
√
32.3.9 7
369
Chapter 33
Similar Triangles
Video Lecture
370
OmegaLearn.org Chapter 33. Similar Triangles
371
OmegaLearn.org Chapter 33. Similar Triangles
Theorem 33.0.1
For similar triangles:
• AA similarity: Two angles of the triangles are same, which basically means that
the third angle will be equal)
• SAS similarity (Side Angle Side): Two sides are proportional and the angle between
the sides is equal
• SSS similarity (Side Side Side): All three sides are proportional
• LL similarity (LL Leg): In a right triangle, the two legs are proportional
An easy way to detect similar triangles is if bases of triangles are parallel and the
sides of the triangles are collinear (see figure below)
372
OmegaLearn.org Chapter 33. Similar Triangles
t1 t2
t3
B C
Video Solution
373
OmegaLearn.org Chapter 33. Similar Triangles
q
Length of the perpendicular to the hypotenuse (BD) = AB·BC
AC
Also note that:
AD · CD = BD2
AD · AC = AB2
CD · CA = CB2
374
OmegaLearn.org Chapter 33. Similar Triangles
D C
A Q B
Video Solution
375
OmegaLearn.org Chapter 33. Similar Triangles
A
30
F
x
E
20
B C
Video Solution
376
OmegaLearn.org Chapter 33. Similar Triangles
377
OmegaLearn.org Chapter 33. Similar Triangles
E
D
A B
Video Solution
378
OmegaLearn.org Chapter 33. Similar Triangles
20
A P 11 D′ C
Video Solution
379
OmegaLearn.org Chapter 33. Similar Triangles
A paper triangle with sides of lengths 3, 4, and 5 inches, as shown, is folded so that point
A falls on point B. What is the length in inches of the crease?
5
3
A 4 C
Video Solution
Three unit squares and two line segments connecting two pairs of vertices are shown.
What is the area of △ABC?
380
OmegaLearn.org Chapter 33. Similar Triangles
A B
Video Solution
A B
P
43
11
D 43 C
381
OmegaLearn.org Chapter 33. Similar Triangles
Video Solution
Right triangle ABC has leg lengths AB = 20 and BC = 21. Including AB and
BC, how many line segments with integer length can be drawn from vertex B to a point
on hypotenuse AC?
A B
Video Solution
382
OmegaLearn.org Chapter 33. Similar Triangles
Video Solution
In △ABC with a right angle at C, point D lies in the interior of AB and point E
lies in the interior of BC so that AC = CD, DE = EB, and the ratio AC : DE = 4 : 3.
What is the ratio AD : DB?
383
OmegaLearn.org Chapter 33. Similar Triangles
B
C A
Video Solution
Triangle ABC with AB = 50 and AC = 10 has area 120. Let D be the midpoint
of AB, and let E be the midpoint of AC. The angle bisector of ∠BAC intersects DE
and BC at F and G, respectively. What is the area of quadrilateral F DBG?
Video Solution
384
OmegaLearn.org Chapter 33. Similar Triangles
A B
P
E
Q
D C
Video Solution
Video Solution
Triangle ABC with AB = 50 and AC = 10 has area 120. Let D be the midpoint
of AB, and let E be the midpoint of AC. The angle bisector of ∠BAC intersects DE
and BC at F and G, respectively. What is the area of quadrilateral F DBG?
Video Solution
385
OmegaLearn.org Chapter 33. Similar Triangles
Video Solution
The diagram below shows a rectangle with side lengths 4 and 8 and a square with
side length 5. Three vertices of the square lie on three different sides of the rectangle, as
shown. What is the area of the region inside both the square and the rectangle?
Video Solution
386
OmegaLearn.org Chapter 33. Similar Triangles
Let ABCD be a rhombus with ∠ADC = 46◦ . Let E be the midpoint of CD, and
let F be the point on BE such that AF is perpendicular to BE. What is the degree
measure of ∠BF C?
Video Solution
Additional Problems
Problem 33.2.14 (AMC 10)
A M B
3
6
D 6 C
An angle is drawn on a set of equally spaced parallel lines as shown. The ratio of
the area of shaded region C to the area of shaded region B is 11/5. Find the ratio of
shaded region D to the area of shaded region A.
387
OmegaLearn.org Chapter 33. Similar Triangles
Let P be an interior point of triangle ABC and extend lines from the vertices through P
to the opposite sides. Let a, b, c, and d denote the lengths of the segments indicated in
the figure. Find the product abc if a + b + c = 43 and d = 3.
388
OmegaLearn.org Chapter 33. Similar Triangles
D
13
F 9
A C
E
A square with side length x is inscribed in a right triangle with sides of length 3,
4, and 5 so that one vertex of the square coincides with the right-angle vertex of the
triangle. A square with side length y is inscribed in another right triangle with sides of
length 3, 4, and 5 so that one side of the square lies on the hypotenuse of the triangle.
x
What is ?
y
389
OmegaLearn.org Chapter 33. Similar Triangles
C
E
D
A F B
C′
T
y
A′ B′
Q
Trapezoid ABCD has sides AB = 92, BC = 50, CD = 19, and AD = 70, with
AB parallel to CD. A circle with center P on AB is drawn tangent to BC and AD.
Given that AP = mn
, where m and n are relatively prime positive integers, find m + n.
390
OmegaLearn.org Chapter 33. Similar Triangles
√
11
B A
√
1001
x
C y D
D
13
F 9
A C
E
391
OmegaLearn.org Chapter 33. Similar Triangles
A P 15 B
S
20
O
Q
D R C
In the right triangle △ACE, we have AC = 12, CE = 16, and EA = 20. Points
B, D, and F are located on AC, CE, and EA, respectively, so that AB = 3, CD = 4,
and EF = 5. What is the ratio of the area of △DBF to that of △ACE?
B
15
F
5
C 4 D 12 E
392
OmegaLearn.org Chapter 33. Similar Triangles
A 3 B
D C
A B
H E
G
D 1 F 1 C
2 2
393
OmegaLearn.org Chapter 33. Similar Triangles
A M B
3
6
D 6 C
D C
A E B
394
OmegaLearn.org Chapter 33. Similar Triangles
D 4 C F
A
B
D 1 2 C
F G
A 5 B
395
OmegaLearn.org Chapter 33. Similar Triangles
H 6 B
C
F
D 4 E A
Square ABCD has sides of length 1. Points E and F are on BC and CD, respec-
tively, so that △AEF is equilateral. A square with vertex B has sides that are parallel
to √those of ABCD and a vertex on AE. The length of a side of this smaller square is
a− b
c
, where a, b, and c are positive integers and b is not divisible by the square of any
prime. Find a + b + c.
396
OmegaLearn.org Chapter 33. Similar Triangles
A 1 D
A′ D′
B C′ E C
Let ABC be a triangle where M is the midpoint of AC, and CN is the angle bi-
sector of ∠ACB with N on AB. Let X be the intersection of the median BM and the
bisector CN . In addition △BXN is equilateral with AC = 2. What is BX 2 ?
Answers
33.1 144
33.2 117
33.3 360
33.4 2 : 1
33.5 51
15
33.2.1 8
1
33.2.2 5
397
OmegaLearn.org Chapter 33. Similar Triangles
33.2.3 194
33.2.4 13
33.2.5 069
33.2.6 2 : 3
33.2.7 75
33.2.8 20
√
33.2.9 12 2
33.2.10 75
33.2.11 10
5
33.2.12 15
8
33.2.13 113
33.2.14 75
33.2.15 408
33.2.16 441
33.2.17 21
37
33.2.18 35
33.2.19 164
33.2.20 110
33.2.21 21
33.2.22 677
398
OmegaLearn.org Chapter 33. Similar Triangles
7
33.2.23 16
54
33.2.24 25
1
33.2.25
6
33.2.26 75
75
33.2.27 8
125
33.2.28 12
25
33.2.29 2
33.2.30 20
33.2.31 12
√
10−6 2
33.2.32 7
399
Chapter 34
Quadrilaterals
Video Lecture
400
OmegaLearn.org Chapter 34. Quadrilaterals
34.1 Square
s2
and a perimeter of
4s
34.2 Rectangle
bh
and a perimeter of
2b + 2h
401
OmegaLearn.org Chapter 34. Quadrilaterals
Video Solution
34.3 Rhombus
402
OmegaLearn.org Chapter 34. Quadrilaterals
34.4 Parallelogram
bh
403
OmegaLearn.org Chapter 34. Quadrilaterals
Video Solution
404
OmegaLearn.org Chapter 34. Quadrilaterals
34.5 Trapezoid
b1 + b2
·h
2
405
OmegaLearn.org Chapter 34. Quadrilaterals
Video Solution
406
OmegaLearn.org Chapter 34. Quadrilaterals
B A
Video Solution
The five small shaded squares inside this unit square are congruent and have disjoint
interiors. The midpoint of each side of the middle square coincides with one √ of the
vertices of the other four small squares as shown. The common side length is a−b 2 , where
a and b are positive integers. What is a + b ?
407
OmegaLearn.org Chapter 34. Quadrilaterals
Video Solution
Video Solution
408
OmegaLearn.org Chapter 34. Quadrilaterals
A 3 B
D C
Video Solution
A square piece of paper has side length 1 and vertices A, B, C, andD in that order.
As shown in the figure the paper is folded so that vertex C meets edge AD at point
C ′ , and edge BC intersects edge AB at point E. Suppose that C ′ D = 13 . What is the
perimeter of △AEC ′ ?
409
OmegaLearn.org Chapter 34. Quadrilaterals
A C’ D
B C
Video Solution
410
OmegaLearn.org Chapter 34. Quadrilaterals
A B
P
43
11
D 43 C
Video Solution
Let ABCD be an isosceles trapezoid having parallel bases AB and CD with AB > CD.
Line segments from a point inside ABCD to the vertices divide the trapezoid into four
triangles whose areas are 2, 3, 4, and 5 starting with the triangle with base CD and
moving clockwise as shown in the diagram below. What is the ratio CD AB
?
Video Solution
411
OmegaLearn.org Chapter 34. Quadrilaterals
Let ABCD be a parallelogram with area 15. Points P and Q are the projections
of A and C, respectively, onto the line BD; and points R and S are the projections of
B and D, respectively, onto the line AC. See the figure, which also shows the relative
locations of these points.
Suppose P Q = 6 and RS = 8, and let d denote the length of BD, the longer diagonal
√
of ABCD. Then d2 can be written in the form m + n p, where m, n, and p are positive
integers and p is not divisible by the square of any prime. What is m + n + p?
Video Solution
412
OmegaLearn.org Chapter 34. Quadrilaterals
Isosceles trapezoid ABCD has parallel sides AD and BC, with BC < AD and AB = CD.
There is a point P in the plane such that P A = 1, P B = 2, P C = 3, and P D = 4. What
is AD
BC
?
1 1 1 2 3
(A) 4
(B) 3
(C) 2
(D) 3
(E) 4
Video Solution
Additional Problems
Problem 34.6.11 (AMC 10/12)
Four congruent rectangles are placed as shown. The area of the outer square is 4
times that of the inner square. What is the ratio of the length of the longer side of each
rectangle to the length of its shorter side?
413
OmegaLearn.org Chapter 34. Quadrilaterals
In square ABCD, points E and H lie on AB and DA, respectively, so that AE = AH.
Points F and G lie on BC and CD, respectively, and points I and J lie on EH so that
F I ⊥ EH and GJ ⊥ EH. See the figure below. Triangle AEH, quadrilateral BF IE,
quadrilateral DHJG, and pentagon F CGJI each has area 1. What is F I 2 ?
D G C
F
H
A E B
A closed box with a square base is to be wrapped with a square sheet of wrapping
paper. The box is centered on the wrapping paper with the vertices of the base lying on
the midlines of the square sheet of paper, as shown in the figure on the left. The four
corners of the wrapping paper are to be folded up over the sides and brought together to
meet at the center of the top of the box, point A in the figure on the right. The box has
base length w and height h. What is the area of the sheet of wrapping paper?
414
OmegaLearn.org Chapter 34. Quadrilaterals
A
w w
A 3 B
D C
415
OmegaLearn.org Chapter 34. Quadrilaterals
the angles in each of these two triangles also form an arithmetic progression. In degrees,
what is the largest possible sum of the two largest angles of ABCD?
Consider the 12-sided polygon ABCDEF GHIJKL, as shown. Each of its sides has
length 4, and each two consecutive sides form a right angle. Suppose that AG and CH
meet at M . What is the area of quadrilateral ABCM ?
A B
K L C D
M
J I F E
H G
Let ABCD be a square, and let E and F be points on AB and BC, respectively.
The line through E parallel to BC and the line through F parallel to AB divide ABCD
into two squares and two nonsquare rectangles. The sum of the areas of the two squares
is 10
9
of the area of square ABCD. Find EB
AE
+ EB
AE
.
416
OmegaLearn.org Chapter 34. Quadrilaterals
A 9 B
D 12 C
417
OmegaLearn.org Chapter 34. Quadrilaterals
A E F B
D C
Trapezoid ABCD has parallel sides AB of length 33 and CD of length 21. The other
two sides are of lengths 10 and 14. The angles A and B are acute. What is the length of
the shorter diagonal of ABCD?
A E 33 F B
10 14
D 21 C
A 15 G 15 D
6
6
F
B
2 C
E
418
OmegaLearn.org Chapter 34. Quadrilaterals
In the diagram below, ABCD is a rectangle with side lengths AB = 3 and BC = 11,
and AECF is a rectangle with side lengths AF = 7 and F C = 9, as shown. The area of
the shaded region common to the interiors of both rectangles is m
n
, where m and n are
relatively prime positive integers. Find m + n.
419
OmegaLearn.org Chapter 34. Quadrilaterals
F
A D
B C
A rectangular floor measures a by b feet, where a and b are positive integers and
b > a. An artist paints a rectangle on the floor with the sides of the rectangle parallel
to the floor. The unpainted part of the floor forms a border of width 1 foot around the
painted rectangle and occupies half the area of the whole floor. How many possibilities
are there for the ordered pair (a, b)?
420
OmegaLearn.org Chapter 34. Quadrilaterals
as the midpoint of DA. The area of ABEF is twice the area of F ECD. What is
AB/DC?
ABCD is a rectangular sheet of paper that has been folded so that corner B is matched
with point B ′ on edge AD. The crease is EF, where E is on AB and F is on CD. The
dimensions AE = 8, BE = 17, and CF = 3 are given. The perimeter of rectangle ABCD
is m/n, where m and n are relatively prime positive integers. Find m + n.
C′
D F C
B′
A E B
In the figure, ABCD is a square of side length 1. The rectangles JKHG and EBCF
are congruent. What is BE?
421
OmegaLearn.org Chapter 34. Quadrilaterals
C F H D
B E J A
Answers
34.1 18
34.2 306
√
34.3 3 35
34.6.1 36
34.6.2 11
422
OmegaLearn.org Chapter 34. Quadrilaterals
25
34.6.3 32
54
34.6.4 25
34.6.5 2
√
2+ 3
34.6.6 3
34.6.7 194
√
34.6.8 2 + 2
34.6.9 81
1
34.6.10 3
34.6.11 3
√
34.6.12 8 − 4 2
34.6.13 2(w + h)2
54
34.6.14 25
34.6.15 240
88
34.6.16 5
34.6.17 018
34.6.18 6
34.6.19 7
√
3
34.6.20 6
34.6.21 25
135
34.6.22 2
34.6.23 98
34.6.24 109
34.6.25 2
34.6.26 5
34.6.27 293
34.6.28 090
√
34.6.29 2 − 3
423
Chapter 35
Circles
Video Lecture
424
OmegaLearn.org Chapter 35. Circles
425
OmegaLearn.org Chapter 35. Circles
426
OmegaLearn.org Chapter 35. Circles
a°
Area of a sector = πr2 × = π × radius2 × fraction of circle in sector
360
a°
Length of the arc = 2πr × = 2π × radius × fraction of circle in sector
360
Definition 35.1.3 (Angle of an arc). This is the angle that the arc makes at the center of
the circle.
427
OmegaLearn.org Chapter 35. Circles
Video Solution
428
OmegaLearn.org Chapter 35. Circles
E F G
A B C D
Video Solution
429
OmegaLearn.org Chapter 35. Circles
D A
P
Q
C B
Video Solution
430
OmegaLearn.org Chapter 35. Circles
B C
Video Solution
PS = PT
431
OmegaLearn.org Chapter 35. Circles
P A · P B = P C · P D = r2 − OP 2
P A · P B = P C · P D = OP 2 − r2
Remark 35.3.4
Power of a point is useful when dealing with circles and chord lengths.
432
OmegaLearn.org Chapter 35. Circles
45◦ E
A √ √ B
5 2 2 5
Video Solution
433
OmegaLearn.org Chapter 35. Circles
B C
A D
Video Solution
434
OmegaLearn.org Chapter 35. Circles
You can draw a circle around quadrilateral and use angle chasing properties for circles
like the inscribed angle theorem.
Concept 35.4.2
Sometimes, there may be quadrilaterals not explicitly stated to be in a circle. Then, if
the sum of opposite angles is 180° or if the angles satisfy properties from the inscribed
angle theorem, then you can identify them to be a cyclic quadrilateral, and you can
use any of the properties of cyclic quadrilaterals or even circles because you know the
quadrilateral can be inscribed in a circle.
435
OmegaLearn.org Chapter 35. Circles
AC · BD = AB · CD + AD · BC
436
OmegaLearn.org Chapter 35. Circles
437
OmegaLearn.org Chapter 35. Circles
√ √
3 6 3 6
O2
B C
√ √
5 2 5 2
O1
Video Solution
438
OmegaLearn.org Chapter 35. Circles
E D
81
81 81
z
y
F C
81 x
81
31
A B
Video Solution
Externally tangent circles with centers at points A and B have radii of lengths 5 and
3, respectively. A line externally tangent to both circles intersects ray AB at point C.
What is BC?
439
OmegaLearn.org Chapter 35. Circles
A 8 B x C
3
5
E
D
Video Solution
In the figure below, N congruent semicircles lie on the diameter of a large semicir-
cle, with their diameters covering the diameter of the large semicircle with no overlap.
Let A be the combined area of the small semicircles and B be the area of the region
inside the large semicircle but outside the semicircles. The ratio A : B is 1 : 18. What is
N?
...
Video Solution
Seven cookies of radius 1 inch are cut from a circle of cookie dough, as shown. Neighboring
cookies are tangent, and all except the center cookie are tangent to the edge of the dough.
The leftover scrap is reshaped to form another cookie of the same thickness. What is the
radius in inches of the scrap cookie?
440
OmegaLearn.org Chapter 35. Circles
Video Solution
Two circles of radius 5 are externally tangent to each other and are internally tan-
gent to a circle of radius 13 at points A and B, as shown in the diagram. The distance
AB can be written in the form m n
, where m and n are relatively prime positive integers.
What is m + n?
A B
Video Solution
441
OmegaLearn.org Chapter 35. Circles
Three circles with radius 2 are mutually tangent. What is the total area of the cir-
cles and the region bounded by them, as shown in the figure?
Video Solution
The figure below shows 13 circles of radius 1 within a larger circle. All the inter-
sections occur at points of tangency. What is the area of the region, shaded in the figure,
inside the larger circle but outside all the circles of radius 1?
442
OmegaLearn.org Chapter 35. Circles
Video Solution
A O B D
Video Solution
In △ABC, AB = 86, and AC = 97. A circle with center A and radius AB inter-
sects BC at points B and X. Moreover BX and CX have integer lengths. What is
BC?
443
OmegaLearn.org Chapter 35. Circles
B
k
E
k
86 90◦ D
h
m
86
A 97 C
Video Solution
If circular arcs AC and BC have centers at B and A, respectively, then there ex-
⌢ ⌢ ⌢
ists a circle tangent to both AC and BC, and to AB. If the length of BC is 12, then the
circumference of the circle is
Video Solution
444
OmegaLearn.org Chapter 35. Circles
M
3
E
B
A 3
Video Solution
√
A quadrilateral is inscribed in a circle of radius 200 2. Three of the sides of this
quadrilateral have length 200. What is the length of the fourth side?
445
OmegaLearn.org Chapter 35. Circles
B C
E F D
A
θ
O
Video Solution
Video Solution
Let S be the set of circles in the coordinate plane that are tangent to each of the
three circles with equations x2 + y 2 = 4, x2 + y 2 = 64, and (x − 5)2 + y 2 = 3. What is
the sum of the areas of all circles in S?
(A) 48π (B) 68π (C) 96π (D) 102π (E) 136π
446
OmegaLearn.org Chapter 35. Circles
Video Solution
Additional Problems
Problem 35.5.14 (AMC 10)
Mary divides a circle into 12 sectors. The central angles of these sectors, measured
in degrees, are all integers and they form an arithmetic sequence. What is the degree
measure of the smallest possible sector angle?
A number of linked rings, each 1 cm thick, are hanging on a peg. The top ring has an
outside diameter of 20 cm. The outside diameter of each of the outer rings is 1 cm less
than that of the ring above it. The bottom ring has an outside diameter of 3 cm. What
is the distance, in cm, from the top of the top ring to the bottom of the bottom ring?
447
OmegaLearn.org Chapter 35. Circles
20
..
.
A circle of radius 1 is tangent to a circle of radius 2. The sides of △ABC are tan-
gent to the circles as shown, and the sides AB and AC are congruent. What is the area
of △ABC?
B C
448
OmegaLearn.org Chapter 35. Circles
The diagram shows twenty congruent circles arranged in three rows and enclosed in a
rectangle. The circles are tangent to one another and to the sides of the rectangle as
shown in the diagram. The ratio of the longer dimension of the rectangle to the shorter
1 √
dimension can be written as ( p − q) where p and q are positive integers. Find p + q.
2
Let ABCD be a cyclic quadrilateral. The side lengths of ABCD are distinct inte-
gers less than 15 such that BC · CD = AB · DA. What is the largest possible value of
BD?
In the figure below, semicircles with centers at A and B and with radii 2 and 1, respec-
tively, are drawn in the interior of, and sharing bases with, a semicircle with diameter
JK. The two smaller semicircles are externally tangent to each other and internally
tangent to the largest semicircle. A circle centered at P is drawn externally tangent to
the two smaller semicircles and internally tangent to the largest semicircle. What is the
radius of the circle centered at P ?
449
OmegaLearn.org Chapter 35. Circles
Triangle ABC is equilateral with side length 6. Suppose that O is the center of the
inscribed circle of this triangle. What is the area of the circle passing through A, O, and
C?
Triangle ABC has AB = 27, AC = 26, and BC = 25. Let I be the intersection
of the internal angle bisectors of △ABC. What is BI?
Circles with radii 1, 2, and 3 are mutually externally tangent. What is the area of
the triangle determined by the points of tangency?
(A) 3
5
(B) 4
5
(C) 1 (D) 6
5
(E) 4
3
450
OmegaLearn.org Chapter 35. Circles
√ √
Isosceles triangle ABC has AB = AC = 3 6, and a circle with radius 5 2 is tan-
gent to line AB at B and to line AC at C. What is the area of the circle that passes
through vertices A, B, and C?
A triangle with sides of 5, 12, and 13 has both an inscribed and a circumscribed
circle. What is the distance between the centers of those circles?
A
E
F
I
B D O C
451
OmegaLearn.org Chapter 35. Circles
T
S
P U Q
Circles C1 and C2 are externally tangent, and they are both internally tangent to
circle C3 . The radii of C1 and C2 are 4 and 10, respectively, and the centers of the three
circles are all collinear. A chord of C3 √is also a common external tangent of C1 and C2 .
Given that the length of the chord is mp n where m, n, and p are positive integers, m and
p are relatively prime, and n is not divisible by the square of any prime, find m + n + p.
452
OmegaLearn.org Chapter 35. Circles
B
T2
T
T1
A
H
O1 O3 O2
B
D
θ O
6
M
θ
C 8 A
453
OmegaLearn.org Chapter 35. Circles
Points A and B lie on a circle centered at O, and ∠AOB = 60◦ . A second circle
is internally tangent to the first and tangent to both OA and OB. What is the ratio of
the area of the smaller circle to that of the larger circle?
P r
2r r
◦
30
A
O Q
R
Q′ P′
P S R′′ Q′′
Q 6 R S′ P ′′
454
OmegaLearn.org Chapter 35. Circles
Circles with centers O and P have radii 2 and 4, respectively, and are externally tangent.
Points A and B on the circle with center O and points C and D on the circle with center
P are such that AD and BC are common external tangents to the circles. What is the
area of the concave hexagon AOBCP D?
A 4
2
P
O
A B
1 2 1
In the adjoining figure, two circles with radii 8 and 6 are drawn with their centers
455
OmegaLearn.org Chapter 35. Circles
12 units apart. At P , one of the points of intersection, a line is drawn in such a way that
the chords QP and P R have equal length. Find the square of the length of QP .
R
12
Triangle ABC is inscribed in circle ω. Points P and Q are on side AB with AP <
AQ. Rays CP and CQ meet ω again at S and T (other than C), respectively. If
AP = 4, P Q = 3, QB = 6, BT = 5, and AS = 7, then ST = m n
, where m and n are
relatively prime positive integers. Find m + n.
456
OmegaLearn.org Chapter 35. Circles
457
OmegaLearn.org Chapter 35. Circles
D
A
C B
Circles A, B and C are externally tangent to each other, and internally tangent to
circle D. Circles B and C are congruent. Circle A has radius 1 and passes through the
center of D. What is the radius of circle B?
Circles A, B, and C each have radius 1. Circles A and B share one point of tan-
gency. Circle C has a point of tangency with the midpoint of AB. What is the area
inside circle C but outside circle A and circle B?
458
OmegaLearn.org Chapter 35. Circles
M
A B
C
D
A collection of circles in the upper half-plane, all tangent to the x-axis, is constructed in
layers as follows. Layer L0 consists of two circles of radii 702 and 732 that are externally
tangent. For k ≥ 1, the circles in k−1 j=0 Lj are ordered according to their points of
S
tangency with the x-axis. For every pair of consecutive circles in this order, a new circle
is constructed externally tangent to each of the two circles in the pair. Layer Lk consists
of the 2k−1 circles constructed in this way. Let S = 6j=0 Lj , and for every circle C denote
S
459
OmegaLearn.org Chapter 35. Circles
Answers
π
35.1 7
35.2 17
35.3 312
35.4 026
35.5 100
35.6 150
35.7 26π
35.8 384
35.5.1 12
35.5.2 19
√
35.5.3 2
35.5.4 69
√
35.5.5 10π + 4 3
√
35.5.6 4π 3
140
35.5.7 37
35.5.8 61
35.5.9 27
35.5.10 12
35.5.11 500
460
OmegaLearn.org Chapter 35. Circles
35.5.12 122
35.5.13 136π
35.5.14 8
35.5.15 173
√
35.5.16 16 2
35.5.17 154
q
425
35.5.18 2
6
35.5.19 7
17
35.5.20 6
35.5.21 12π
35.5.22 15
6
35.5.23 5
35.5.24 26π
√
65
35.5.25 2
35.5.26 725
35.5.27 405
35
35.5.28 12
1
35.5.29 9
√
35.5.30 3 + 10 π
√
35.5.31 24 2
461
OmegaLearn.org Chapter 35. Circles
√
7 3
35.5.32 6
π − 2
35.5.33 130
35.5.34 43
1
35.5.35 3
8
35.5.36 9
35.5.37 2
143
35.5.38 14
462
Chapter 36
Polygons
Theorem 36.0.1
(n − 2)
Interior angle of a regular polygon = · 180
n
360
Exterior angle of a regular polygon =
n
463
OmegaLearn.org Chapter 36. Polygons
36.1 Hexagon
Theorem 36.1.1
(6 − 2)
Interior angle of a regular hexagon = · 180 = 120
6
360
Exterior angle of a regular hexagon = = 60
6
√
3 2
Area of a regular hexagon = 6 · s
4
464
OmegaLearn.org Chapter 36. Polygons
36.2 Octagon
Theorem 36.2.1
(8 − 2)
Interior angle of a regular octagon = · 180 = 135
6
360
Exterior angle of a regular octagon = = 45
8
√
Area of a regular octagon = 2(1 + 2)s2
Remark 36.2.2
A regular hexagon can be divided into 6 congruent equilateral triangles.
465
OmegaLearn.org Chapter 36. Polygons
E D
A B
466
OmegaLearn.org Chapter 36. Polygons
F G
E B
J H
D C
467
OmegaLearn.org Chapter 36. Polygons
468
OmegaLearn.org Chapter 36. Polygons
A wire is cut into two pieces, one of length a and the other of length b. The piece
of length a is bent to form an equilateral triangle, and the piece of length b is bent to
form a regular hexagon. The triangle and the hexagon have equal area. What is ab ?
Video Solution
Two circles lie outside regular hexagon ABCDEF . The first is tangent to AB, and the
second is tangent to DE. Both are tangent to lines BC and F A. What is the ratio of
the area of the second circle to that of the first circle?
(A) 18 (B) 27 (C) 36 (D) 81 (E) 108
469
OmegaLearn.org Chapter 36. Polygons
Regular octagon ABCDEF GH has area n. Let m be the area of quadrilateral ACEG.
What is m
n
?
A B
H C
G D
F E
Video Solution
470
OmegaLearn.org Chapter 36. Polygons
Video Solution
In regular hexagon ABCDEF , points W , X, Y , and Z are chosen on sides BC, CD, EF ,
and F A respectively, so lines AB, ZW , Y X, and ED are parallel and equally spaced.
What is the ratio of the area of hexagon W CXY F Z to the area of hexagon ABCDEF ?
E D
Z W
F C
Y X
A B
Video Solution
471
OmegaLearn.org Chapter 36. Polygons
Additional Problems
Problem 36.3.7 (AMC 10)
A regular octagon is formed by cutting an isosceles right triangle from each of the
corners of a square with sides of length 2000. What is the length of each side of the
octagon?
Spot’s doghouse has a regular hexagonal base that measures one yard on each side.
He is tethered to a vertex with a two-yard rope. What is the area, in square yards, of
the region outside of the doghouse that Spot can reach?
Equilateral △ABC has side length 1, and squares ABDE, BCHI, CAF G lie outside
the triangle. What is the area of hexagon DEF GHI?
472
OmegaLearn.org Chapter 36. Polygons
F
E
G
D
B C
I H
Andrea inscribed a circle inside a regular pentagon, circumscribed a circle around the
pentagon, and calculated the area of the region between the two circles. Bethany did
the same with a regular heptagon (7 sides). The areas of the two regions were A and B,
respectively. Each polygon had a side length of 2. Which of the following is true?
(A) A = 25
49
B (B) A = 57 B (C) A = B (D) A = 57 B (E) A = 49
25
B
relatively prime, and c is not divisible by the square of any prime. Find a + b + c + d.
473
OmegaLearn.org Chapter 36. Polygons
A hexagon that is inscribed in a circle has side lengths 22, 22, 20, 22, 22, and 20
√
in that order. The radius of the circle can be written as p + q, where p and q are
positive integers. Find p + q.
B C
A D
F E
Eight spheres of radius 100 are placed on a flat surface so that each sphere is tan-
gent to two others and their centers are the vertices of a regular octagon. A ninth sphere
is placed on the flat surface so that
√ it is tangent to each of the other eight spheres. The
radius of this last sphere is a + b c, where a, b, and c are positive integers, and c is not
divisible by the square of any prime. Find a + b + c.
Answers
√
36.1 1 + 5
36.2 120
√
6
36.3.1 2
36.3.2 55
474
OmegaLearn.org Chapter 36. Polygons
36.3.3 81
√
2
36.3.4 2
36.3.5 23
11
36.3.6 27
√
36.3.7 2000( 2 − 1)
36.3.8 3π
√
36.3.9 3 + 3
36.3.10 A = B
36.3.11 6
36.3.12 021
36.3.13 272
36.3.14 152
475
Chapter 37
3-D Geometry
37.1 Cube
√ √
Length of space diagonal of a cube = 3 × side length = 3a
476
OmegaLearn.org Chapter 37. 3-D Geometry
√
Length of space diagonal of a rectangular prism = l2 + b2 + h2
477
OmegaLearn.org Chapter 37. 3-D Geometry
37.3 Cylinder
478
OmegaLearn.org Chapter 37. 3-D Geometry
37.4 Cone
Remark 37.4.2
The slant height s can be calculated by the following formula
√
s = r2 + h2
or q
slant height = radius2 + height2
479
OmegaLearn.org Chapter 37. 3-D Geometry
37.5 Sphere
480
OmegaLearn.org Chapter 37. 3-D Geometry
37.6 Tetrahedron
481
OmegaLearn.org Chapter 37. 3-D Geometry
37.7 Pyramid
482
OmegaLearn.org Chapter 37. 3-D Geometry
Seven cubes, whose volumes are 1, 8, 27, 64, 125, 216, and 343 cubic units, are stacked
vertically to form a tower in which the volumes of the cubes decrease from bottom to
top. Except for the bottom cube, the bottom face of each cube lies completely on top of
the cube below it. What is the total surface area of the tower (including the bottom) in
square units?
Video Solution
Jerry cuts a wedge from a 6-cm cylinder of bologna as shown by the dashed curve.
Which answer choice is closest to the volume of his wedge in cubic centimeters?
6 cm
8 cm
Video Solution
483
OmegaLearn.org Chapter 37. 3-D Geometry
In the cube ABCDEF GH with opposite vertices C and E, J and I are the mid-
points of segments F B and HD, respectively. Let R be the ratio of the area of the
cross-section EJCI to the area of one of the faces of the cube. What is R2 ?
G
J
A I
Video Solution
Isabella uses one-foot cubical blocks to build a rectangular fort that is 12 feet long,
10 feet wide, and 5 feet high. The floor and the four walls are all one foot thick. How
many blocks does the fort contain?
484
OmegaLearn.org Chapter 37. 3-D Geometry
Video Solution
The two cones shown have parallel bases and common apex T. TW = 32 m, WV
= 8 m, and ZY = 5 m. What is the volume of the frustum with circle W and circle Z as
its bases? Express your answer in terms of π.
485
OmegaLearn.org Chapter 37. 3-D Geometry
Video Solution
An inverted cone with base radius 12 cm and height 18 cm is full of water. The
water is poured into a tall cylinder whose horizontal base has a radius of 24 cm. What is
the height in centimeters of the water in the cylinder?
Video Solution
Two right circular cones with vertices facing down as shown in the figure below contain
the same amount of liquid. The radii of the tops of the liquid surfaces are 3 cm and 6 cm.
Into each cone is dropped a spherical marble of radius 1 cm, which sinks to the bottom
and is completely submerged without spilling any liquid. What is the ratio of the rise of
the liquid level in the narrow cone to the rise of the liquid level in the wide cone?
486
OmegaLearn.org Chapter 37. 3-D Geometry
Video Solution
487
OmegaLearn.org Chapter 37. 3-D Geometry
√
(A) 6 (B) 7 (C) 5 + 2 2 (D) 8 (E) 9
Video Solution
Video Solution
Video Solution
488
OmegaLearn.org Chapter 37. 3-D Geometry
Additional Problems
Problem 37.8.11 (MATHCOUNTS)
A right circular cone is sliced into four pieces by planes parallel to its base, as shown in
the figure. All of these pieces have the same height. What is the ratio of the volume of
the second-largest piece to the volume of the largest piece? Express your answer as a
common fraction.
The centers of the faces of the right rectangular prism shown below are joined to
create an octahedron. What is the volume of this octahedron?
489
OmegaLearn.org Chapter 37. 3-D Geometry
A pyramid with a square base is cut by a plane that is parallel to its base and 2
units from the base. The surface area of the smaller pyramid that is cut from the top
is half the surface area of the original pyramid. What is the altitude of the original
pyramid?
A white cylindrical silo has a diameter of 30 feet and a height of 80 feet. A red
stripe with a horizontal width of 3 feet is painted on the silo, as shown, making two
complete revolutions around it. What is the area of the stripe in square feet?
490
OmegaLearn.org Chapter 37. 3-D Geometry
3
80
30
A right circular cylinder with its diameter equal to its height is inscribed in a right
circular cone. The cone has diameter 10 and altitude 12, and the axes of the cylinder
and cone coincide. Find the radius of the cylinder.
491
OmegaLearn.org Chapter 37. 3-D Geometry
A
12 − 2r
D E
2r
2r
B 10 C
A regular hexagon with sides of length 6 has an isosceles triangle attached to each
side. Each of these triangles has two sides of length 8. The isosceles triangles are folded
to make a pyramid with the hexagon as the base of the pyramid. What is the volume of
the pyramid?
An ice cream cone consists of a sphere of vanilla ice cream and a right circular cone that
has the same diameter as the sphere. If the ice cream melts, it will exactly fill the cone.
Assume that the melted ice cream occupies 75% of the volume of the frozen ice cream.
What is the ratio of the cone’s height to its radius? (Note: a cone with radius r and
height h has volume πr2 h/3 and a sphere with radius r has volume 4πr3 /3.)
Triangle ABC, with sides of length 5, 6, and 7, has one vertex on the positive x-
492
OmegaLearn.org Chapter 37. 3-D Geometry
axis, one on the positive y-axis, and one on the positive z-axis. Let O be the origin.
What is the volume of tetrahedron OABC?
5
b
O a
A
c
7
A cube with side length 1 is sliced by a plane that passes through two diagonally opposite
vertices A and C and the midpoints B and D of two opposite edges not containing A or
C, as shown. What is the area of quadrilateral ABCD?
493
OmegaLearn.org Chapter 37. 3-D Geometry
The centers of the faces of the right rectangular prism shown below are joined to
create an octahedron. What is the volume of this octahedron?
494
OmegaLearn.org Chapter 37. 3-D Geometry
A pyramid has a square base with side of length 1 and has lateral faces that are
equilateral triangles. A cube is placed within the pyramid so that one face is on the base
of the pyramid and its opposite face has all its edges on the lateral faces of the pyramid.
What is the volume of this cube?
A pyramid has a square base with sides of length 1 and has lateral faces that are
equilateral triangles. A cube is placed within the pyramid so that one face is on the base
of the pyramid and its opposite face has all its edges on the lateral faces of the pyramid.
What is the volume of this cube?
495
OmegaLearn.org Chapter 37. 3-D Geometry
Jesse cuts a circular paper disk of radius 12 along two radii to form two sectors, the
smaller having a central angle of 120 degrees. He makes two circular cones, using each
sector to form the lateral surface of a cone. What is the ratio of the volume of the smaller
cone to that of the larger?
√ √ √
(A) 18 (B) 14 (C) 10
10
(D) 6
5
(E) 5
5
A regular hexagon with sides of length 6 has an isosceles triangle attached to each
side. Each of these triangles has two sides of length 8. The isosceles triangles are folded
to make a pyramid with the hexagon as the base of the pyramid. What is the volume of
the pyramid?
Six spheres of radius 1 are positioned so that their centers are at the vertices of a
regular hexagon of side length 2. The six spheres are internally tangent to a larger sphere
whose center is the center of the hexagon. An eighth sphere is externally tangent to the
six smaller spheres and internally tangent to the larger sphere. What is the radius of
this eighth sphere?
496
OmegaLearn.org Chapter 37. 3-D Geometry
497
OmegaLearn.org Chapter 37. 3-D Geometry
1
1
s
r
s
r−1
A cylindrical log has diameter 12 inches. A wedge is cut from the log by making
two planar cuts that go entirely through the log. The first is perpendicular to the axis of
the cylinder, and the plane of the second cut forms a 45◦ angle with the plane of the first
cut. The intersection of these two planes has exactly one point in common with the log.
The number of cubic inches in the wedge can be expressed as nπ, where n is a positive
integer. Find n.
H G
E
F
2
D C
A 3 B
498
OmegaLearn.org Chapter 37. 3-D Geometry
Centers of adjacent faces of a unit cube are joined to form a regular octahedron. What is
the volume of this octahedron?
A sphere is inscribed in a cube that has a surface area of 24 square meters. A sec-
ond cube is then inscribed within the sphere. What is the surface area in square meters
of the inner cube?
499
OmegaLearn.org Chapter 37. 3-D Geometry
Logan is constructing a scaled model of his town. The city’s water tower stands 40 meters
high, and the top portion is a sphere that holds 100,000 liters of water. Logan’s miniature
water tower holds 0.1 liters. How tall, in meters, should Logan make his tower?
When a right triangle is rotated about one leg, the volume of the cone produced is
800π cm3 . When the triangle is rotated about the other leg, the volume of the cone
produced is 1920π cm3 . What is the length (in cm) of the hypotenuse of the triangle?
The solid shown has a square base of side length s. The upper edge is√parallel to
the base and has length 2s. All other edges have length s. Given that s = 6 2, what is
the volume of the solid?
500
OmegaLearn.org Chapter 37. 3-D Geometry
A container in the shape of a right circular cone is 12 inches tall and its base has
a 5-inch radius. The liquid that is sealed inside is 9 inches deep when the cone is held
with its point down and its base horizontal. When the liquid is held with its point up
√
and its base horizontal, the height of the liquid is m − n 3 p, from the base where m, n,
and p are positive integers and p is not divisible by the cube of any prime number. Find
m + n + p.
501
OmegaLearn.org Chapter 37. 3-D Geometry
In a regular tetrahedron the centers of the four faces are the vertices of a smaller
tetrahedron. The ratio of the volume of the smaller tetrahedron to that of the larger is
m/n, where m and n are relatively prime positive integers. Find m + n.
A cylindrical barrel with radius 4 feet and height 10 feet is full of water. A solid
502
OmegaLearn.org Chapter 37. 3-D Geometry
cube with side length 8 feet is set into the barrel so that the diagonal of the cube is
vertical. The volume of water thus displaced is v cubic feet. Find v 2 .
Cube ABCDEF GH, labeled as shown below, has edge length 1 and is cut by a plane
passing through vertex D and the midpoints M and N of AB and CG respectively. The
plane divides the cube into two solids. The volume of the larger of the two solids can be
written in the form pq , where p and q are relatively prime positive integers. Find p + q.
H G
E N
F
D
C
A M B
503
OmegaLearn.org Chapter 37. 3-D Geometry
Answers
37.8.1 658
37.8.2 151
3
37.8.3 2
37.8.4 280
37.8.5 516π
37.8.6 1.5
37.8.7 4 : 1
37.8.8 7
37.8.9 4
√
37.8.10 24 5
37.8.11 <>
37.8.12 10
√
37.8.13 4 + 2 2
37.8.14 240
30
37.8.15 11
√
37.8.16 36 21
37.8.17 3 : 1
√
37.8.18 95
√
6
37.8.19 2
504
OmegaLearn.org Chapter 37. 3-D Geometry
37.8.20 10
44π
37.8.21 3
√
37.8.22 5 2 − 7
√
37.8.23 5 2 − 7
√
10
37.8.24 10
√
37.8.25 36 21
3
37.8.26 2
√
3+ 5
37.8.27
2
37.8.28 216
37.8.29 2
1
37.8.30 6
37.8.31 8
37.8.32 0.4
37.8.33 026
37.8.34 288
37.8.35 052
√
37.8.36 2 + 2 7
37.8.37 041
√
37.8.38 3 + 69
3
37.8.39 028
37.8.40 384
37.8.41 089
505
Chapter 38
• Divide the shape into “nicer” areas which are easier to calculate
• Extend Lines
– You generally want to extend lines when they form nicer shapes/areas to work
with, such as triangles
• Break up areas
Remark 38.1.2
A common technique is to find the area of shapes and then find the area of a shape in
terms of a variable (like altitude, inradius, circumradius, etc.) and then solve for that
variable.
506
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
507
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
508
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
• Be on the lookout for 90 degree angles, as you can use Pythagorean theorem
• Split the length into multiple components by using some of these techniques
• Extending lines to create similar triangles, special triangles, etc. and then sub-
tracting the extra length
B A
Video Solution
509
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Regular octagon ABCDEF GH has area n. Let m be the area of quadrilateral ACEG.
What is m
n
?
A B
H C
G D
F E
Video Solution
As shown in the figure below, six semicircles lie in the interior of a regular hexagon
with side length 2 so that the diameters of the semicircles coincide with the sides of the
hexagon. What is the area of the shaded region —- inside the hexagon but outside all of
the semicircles?
510
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Video Solution
A rectangle has sides of length a and 36. A hinge is installed at each vertex of the
rectangle, and at the midpoint of each side of length 36. The sides of length a can be
pressed toward each other keeping those two sides parallel so the rectangle becomes
a convex hexagon as shown. When the figure is a hexagon with the sides of length a
parallel and separated by a distance of 24, the hexagon has the same area as the original
rectangle. Find a2 .
ABCD is a rectangular sheet of paper that has been folded so that corner B is matched
with point B ′ on edge AD. The crease is EF, where E is on AB and F is on CD. The
dimensions AE = 8, BE = 17, and CF = 3 are given. The perimeter of rectangle ABCD
is m/n, where m and n are relatively prime positive integers. Find m + n.
511
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
C′
D F C
B′
A E B
In △ABC, ∠C = 90◦ and AB = 12. Squares ABXY and CBW Z are constructed
outside of the triangle. The points X, Y , Z, and W lie on a circle. What is the perimeter
of the triangle?
W B
Y
M
E
Z C A
512
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
513
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
A B
D C
15
7
D
OA
3
20
7
OB
3
45◦ sin θ = 5
C B
4
514
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
A circle with center O√ has area 156π. Triangle ABC is equilateral, BC is a chord
on the circle, OA = 4 3, and point O is outside △ABC. What is the side length of
△ABC?
s
B 2 X C
√
s 3
2
s
√ A
156
√
4 3
The figure shown is called a trefoil and is constructed by drawing circular sectors
about the sides of the congruent equilateral triangles. What is the area of a trefoil whose
horizontal base has length 2?
515
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Two circles lie outside regular hexagon ABCDEF . The first is tangent to AB, and the
second is tangent to DE. Both are tangent to lines BC and F A. What is the ratio of
the area of the second circle to that of the first circle?
516
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
A X B
a
1
2
√
3
3
An equilateral triangle has side length 6. What is the area of the region contain-
ing all points that are outside the triangle but not more than 3 units from a point of the
triangle?
3
6
517
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Circles centered at
√ A and B each have radius 2, as shown. Point O is the midpoint of
AB, and OA = 2 2. Segments OC and OD are tangent to the circles centered at A and
B, respectively, and EF is a common tangent. What is the area of the shaded region
ECODF ?
E F
C D
A B
O
2 2
The closed curve in the figure is made up of 9 congruent circular arcs each of length 2π
3
,
where each of the centers of the corresponding circles is among the vertices of a regular
hexagon of side 2. What is the area enclosed by the curve?
◦ ◦
◦ ◦
518
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
A regular hexagon has side length 6. Congruent arcs with radius 3 are drawn with
the center at each of the vertices, creating circular sectors as shown. The region inside
the hexagon but outside the sectors is shaded as shown What is the area of the shaded
region?
A round table has radius 4. Six rectangular place mats are placed on the table. Each
place mat has width 1 and length x as shown. They are positioned so that each mat has
two corners on the edge of the table, these two corners being end points of the same side
of length x. Further, the mats are positioned so that the inner corners each touch an
inner corner of an adjacent mat. What is x?
519
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Square ABCD has side length 2. A semicircle with diameter AB is constructed in-
520
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
side the square, and the tangent to the semicircle from C intersects side AD at E. What
is the length of CE?
D C
A B
B
2
521
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
C E
B
O A
A paint brush is swept along both diagonals of a square to produce the symmetric
painted area, as shown. Half the area of the square is painted. What is the ratio of the
side length of the square to the brush width?
522
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Circles centered at
√ A and B each have radius 2, as shown. Point O is the midpoint of
AB, and OA = 2 2. Segments OC and OD are tangent to the circles centered at A and
B, respectively, and EF is a common tangent. What is the area of the shaded region
ECODF ?
E F
C D
A B
O
2 2
A unit square is rotated 45◦ about its center. What is the area of the region swept out
by the interior of the square?
523
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
B C
524
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
Circles ω1 , ω2 , and ω3 each have radius 4 and are placed in the plane so that each
circle is externally tangent to the other two. Points P1 , P2 , and P3 lie on ω1 , ω2 , and
ω3 respectively such that P1 P2 = P2 P3 = P3 P1 and line Pi Pi+1 is tangent to ωi for each
i = 1, 2, 3,√where√P4 = P1 . See the figure below. The area of △P1 P2 P3 can be written in
the form a + b for positive integers a and b. What is a + b?
ω1
P1
P3
ω3 ω2
P2
Squares S1 and S2 are inscribed in right triangle ABC, as shown in the figures be-
low. Find AC + CB if area (S1 ) = 441 and area (S2 ) = 440.
E
D
S1
B
C F
525
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
A
X
Y
S2
W
B
C Z
Answers
38.1 185
38.2 023
38.3.1 36
√
2
38.3.2 2
√
38.3.3 3 3 − π
√
38.4.1 4(π − 3)
38.4.2 720
38.4.3 293
√
4 4 3π
38.4.4 3
− 27
√
38.4.5 12 + 12 2
38.4.6 1
√
12−5 3
38.4.7 36
√
38.4.8 3
28
10 − 2
38.4.9 6
2
38.4.10 3
π
526
OmegaLearn.org Chapter 38. Area and Length of Complex Shapes
38.4.11 81
√
2π 3
38.4.12 −
9 3
38.4.13 54 + 9π
√
38.4.14 8 2 − 4 − π
√
38.4.15 π + 6 3
√
38.4.16 54 3 − 18π
√ √
3 7− 3
38.4.17 2
√
3 1
38.4.18 4
− 24
π
5
38.4.19 2
√
38.4.20 5
3
π −2 3
√
38.4.21 π
3
+1− 3
√
38.4.22 2 2 + 2
√
38.4.23 8 2 − 4 − π
√
38.4.24 2 − 2+ π
4
√
4 4 3π
38.4.25 3
− 27
38.4.26 552
38.4.27 462
527
Chapter 39
Coordinate Geometry
528
OmegaLearn.org Chapter 39. Coordinate Geometry
|a · x0 + b · y0 + c|
√
a2 + b 2
.
Remark 39.1.7
Be careful not to get the equation of the line confused with ax + by = c
Remark 39.1.8
Note that this distance represents the shortest possible distance which would be length
of the perpendicular line.
Remark 39.1.9
This formula is a bit confusing so an easy way to remember the numerator is that it’s
just the equation of the line with the values of the point plugged in as the x and y values
(x − a)2 + (y − b)2 = r2
Video Solution
529
OmegaLearn.org Chapter 39. Coordinate Geometry
A laser is placed at the point (3,5). The laser beam travels in a straight line. Larry wants
the beam to hit and bounce off the y-axis, then hit and bounce off the x-axis, then hit
the point (7, 5). What is the total distance the beam will travel along this path?
Video Solution
The point P (a, b) in the xy-plane is first rotated counterclockwise by 90° around the
point (1, 5) and then reflected about the line y = −x. The image of P after these two
transformations is at (−6, 3). What is b − a?
Video Solution
x2 + y 2 = 3|x − y| + 3|x + y|
Video Solution
Additional Problems
Problem 39.2.5 (AMC 10)
The line 12x + 5y = 60 forms a triangle with the coordinate axes. What is the sum of
the lengths of the altitudes of this triangle?
530
OmegaLearn.org Chapter 39. Coordinate Geometry
Triangle ABC has vertices A = (3, 0), B = (0, 3), and C, where C is on the line
x + y = 7. What is the area of △ABC?
The point P = (1, 2, 3) is reflected in the xy-plane, then its image Q is rotated by
180◦ about the x-axis to produce R, and finally, R is translated by 5 units in the
positive-y direction to produce S. What are the coordinates of S?
1
Two lines with slopes and 2 intersect at (2, 2). What is the area of the triangle
2
531
OmegaLearn.org Chapter 39. Coordinate Geometry
A triangle has vertices (0, 0), (1, 1), and (6m, 0), and the line y = mx divides the
triangle into two triangles of equal area. What is the sum of all possible values of m?
Let A, B and C be three distinct points on the graph of y = x2 such that line AB is
parallel to the x-axis and △ABC is a right triangle with area 2008. What is the sum of
the digits of the y-coordinate of C?
Let points A = (0, 0), B = (1, 2), C = (3, 3), and D = (4, 0). Quadrilateral ABCD is
cut
into
equal area pieces by a line passing through A. This line intersects CD at point
p r
,
q s
, where these fractions are in lowest terms. What is p + q + r + s?
B
E
15
8
A 27 4 D
8
532
OmegaLearn.org Chapter 39. Coordinate Geometry
In rectangle ABCD, we have A = (6, −22), B = (2006, 178), D = (8, y), for some
integer y. What is the area of rectangle ABCD?
Find the area of the region enclosed by the graph of |x − 60| + |y| = x
4
.
Find the number of ordered pairs (x, y) of positive integers that satisfy x ≤ 2y ≤ 60 and
y ≤ 2x ≤ 60.
Consider the parallelogram with vertices (10, 45), (10, 114), (28, 153), and (28, 84). A line
through the origin cuts this figure into two congruent polygons. The slope of the line is
m/n, where m and n are relatively prime positive integers. Find m + n.
Triangle ABC lies in the cartesian plane and has an area of 70. The coordinates
of B and C are (12, 19) and (23, 20), respectively, and the coordinates of A are (p, q).
The line containing the median to side BC has slope −5. Find the largest possible value
of p + q.
533
OmegaLearn.org Chapter 39. Coordinate Geometry
A (p,q)
(17,22)
M C (23,20)
B (12,19)
H 6 B
C
F
D 4 E A
Answers
8a2
39.2.1 a2 +1
√
39.2.2 10 2
39.2.3 7
534
OmegaLearn.org Chapter 39. Coordinate Geometry
39.2.4 54
281
39.2.5
13
39.2.6 6
39.2.7 13
39.2.8 (1, 3, 3)
39.2.9 50
35
39.2.10 12
39.2.11 6
39.2.12 − 16
39.2.13 18
39.2.14 58
39.2.16 480
39.2.17 480
39.2.18 118
39.2.19 031
39.2.20 047
39.2.21 20
535
Advanced Topics
536
Chapter 40
3. Graph your equations and look for intersection points (we recommend using graph
paper)
537
OmegaLearn.org Chapter 40. Floor and Ceiling Functions
Additional Problems
Problem 40.1.1 (AMC 10)
The graph of
f (x) = |⌊x⌋| − |⌊1 − x⌋|
is symmetric about which of the following? (Here ⌊x⌋ is the greatest integer not exceeding
x.)
(A) the y-axis (B) the line x = 1 (C) the origin
1
(D) the point ,0 (E) the point (1, 0)
2
Cozy the Cat and Dash the Dog are going up a staircase with a certain number of
steps. However, instead of walking up the steps one at a time, both Cozy and Dash jump.
Cozy goes two steps up with each jump (though if necessary, he will just jump the last
step). Dash goes five steps up with each jump (though if necessary, he will just jump the
last steps if there are fewer than 5 steps left). Suppose Dash takes 19 fewer jumps than
Cozy to reach the top of the staircase. Let s denote the sum of all possible numbers of
steps this staircase can have. What is the sum of the digits of s?
538
OmegaLearn.org Chapter 40. Floor and Ceiling Functions
j k j k j k j k
r + 100
19
+ r + 10020
+ r + 10021
+ · · · + r + 100
91
= 546. Find ⌊100r⌋. (For real x,
⌊x⌋ is the greatest integer less than or equal to x.)
How many positive integers N less than 1000 are there such that the equation x⌊x⌋ = N
has a solution for x?
Given a nonnegative real number x, let ⟨x⟩ denote the fractional part of x; that is,
⟨x⟩ = x − ⌊x⌋, where ⌊x⌋ denotes the greatest integer less than or equal to x. Suppose
that a is positive, ⟨a−1 ⟩ = ⟨a2 ⟩, and 2 < a2 < 3. Find the value of a12 − 144a−1 .
A sample of 121 integers is given, each between 1 and 1000 inclusive, with repeti-
tions allowed. The sample has a unique mode (most frequent value). Let D be the
difference between the mode and the arithmetic mean of the sample. What is the largest
possible value of ⌊D⌋? (For real x, ⌊x⌋ is the greatest integer less than or equal to x.)
Find the number of positive integers n less than 1000 for which there exists a posi-
tive real number x such that n = x⌊x⌋.
Note: ⌊x⌋ is the greatest integer less than or equal to x.
539
OmegaLearn.org Chapter 40. Floor and Ceiling Functions
Given a real number x, let ⌊x⌋ denote the greatest integer less than or equal to x.
For a certain integer k, there are exactly 70 positive integers n1 , n2 , . . . , n70 such that
√ √ √
k = ⌊ 3 n1 ⌋ = ⌊ 3 n2 ⌋ = · · · = ⌊ 3 n70 ⌋ and k divides ni for all i such that 1 ≤ i ≤ 70.
Find the maximum value of ni
k
for 1 ≤ i ≤ 70.
For a real number a, let ⌊a⌋ denote the greatest integer less than or equal to a. Let R de-
note the region in the coordinate plane consisting of points (x, y) such that ⌊x⌋2 +⌊y⌋2 = 25.
The region R is completely contained in a disk of radius r (a disk √
is the union of a circle
and its interior). The minimum value of r can be written as n , where m and n are
m
540
OmegaLearn.org Chapter 40. Floor and Ceiling Functions
Answers
40.1.1 D
40.1.2 22
40.1.3 13
40.1.4 743
40.1.5 412
40.1.6 233
40.1.7 947
40.1.8 049
40.1.9 496
40.1.10 553
40.1.11 6
40.1.12 132
40.1.13 80or81
541
Chapter 41
Inequalities
b2
• If a > 0, then the minimum value of Q(x) is c − 4a
and occurs when x = − 2a
b
b2
• If a < 0, then the maximum value of Q(x) is c − 4a
and occurs when x = − 2a
b
Remark 41.0.3
Simple, yet powerful. This is the core of all inequalities and how more advanced
inequalities are derived.
The rest of the inequalities are optional for the AMC 10 but are still good to know.
Basically, this means the average of 2 non-negative numbers (arithmetic mean) is always
at least as big as the square root of the product of the 2 numbers (the geometric mean).
542
OmegaLearn.org Chapter 41. Inequalities
Corollary 41.0.5
The minimum value of x + 1
x
is 2 and occurs when x = 1
Note that equality occurs when a1 = a2 · · · = an . (essentially all the variables are equal).
Remark 41.0.8
This means in general,
√
min(a1 + a2 + a3 + · · · + an ) = n · n
a1 · a2 · a3 · · · · an
a1 + a2 + · · · + an
n
max(a1 · a2 · a3 · · · · an ) =
n
Essentially,
q
min(sum of all numbers) = n · n
product of all numbers)
Remark 41.0.9
Generally, we use AM-GM to maximize products or minimize sums.
543
OmegaLearn.org Chapter 41. Inequalities
Remark 41.0.11
Weighted AM-GM is very similar to AM-GM. One way to visualize weighted AM-GM
is that there are ck number of terms which are all equal to ak . So instead of writing
ak + ak + · · · + ak ck times in our sum we simply write ak · ck , and instead of writing
ak · ak · . . . ck times in our product we simply write ackk .
Remark 41.0.12
We use weighted AM-GM when we are trying to make the sum of all terms a constant
by multiplying weights to all (or some) the terms. Remember to divide by the weights
you multiplied at the end.
This means
(the sum of the products of all ak and bk )2 ≤
product of the sum of squares of all ak and bk
Remark 41.0.14
If you ever forget which side the ≥ sign faces, just try a small example like a1 = 1,
a2 = 2, b1 = 3, and b2 = 4.
544
OmegaLearn.org Chapter 41. Inequalities
Remark 41.0.15
You generally want to apply Cauchy Schwarz when you are dealing with sums of squares.
Alternately, √ √ √
a1 a2 an ( a1 + a2 + · · · + an )2
+ + ··· + ≥
b1 b2 bn b1 + b2 + b3 + · · · + b n
1. Try to find another simple expression for maximization is greater than or equal to
the expression you are given OR minimization is less than the expression you are
given by using 1 (or possibly even more) of the inequalities
2. Verify that the equality case of your inequality holds true with your problem
conditions
545
OmegaLearn.org Chapter 41. Inequalities
Define
P (x) = (x − 12 )(x − 22 ) · · · (x − 1002 ).
How many integers n are there such that P (n) ≤ 0?
Video Solution
Video Solution
Video Solution (Meta-solving)
What is the least possible value of (xy − 1)2 + (x + y)2 for real numbers x and y?
Video Solution
Consider functions f that satisfy |f (x) − f (y)| ≤ 21 |x − y| for all real numbers x and y.
Of all such functions that also satisfy the equation f (300) = f (900), what is the greatest
possible value of
f (f (800)) − f (f (400))?
(A) 25 (B) 50 (C) 100 (D) 150 (E) 200
546
OmegaLearn.org Chapter 41. Inequalities
Video Solution
What is the least possible value of (xy − 1)2 + (x + y)2 for real numbers x and y?
Suppose that |xi | < 1 for i = 1, 2, . . . , n. Suppose further that |x1 | + |x2 | + · · · + |xn | =
19 + |x1 + x2 + · · · + xn |. What is the smallest possible value of n?
There is a smallest positive real number a such that there exists a positive real number
b such that all the roots of the polynomial x3 − ax2 + bx − a are real. In fact, for this
value of a the value of b is unique. What is this value of b?
Problem 41.2.5
547
OmegaLearn.org Chapter 41. Inequalities
Find p + q.
Alpha and Beta both took part in a two-day problem-solving competition. At the
end of the second day, each had attempted questions worth a total of 500 points. Alpha
scored 160 points out of 300 points attempted on the first day, and scored 140 points out
of 200 points attempted on the second day. Beta who did not attempt 300 points on the
first day, had a positive integer score on each of the two days, and Beta’s daily success
rate (points scored divided by points attempted) on each day was less than Alpha’s on
that day. Alpha’s two-day success ratio was 300/500 = 3/5. The largest possible two-day
success ratio that Beta could achieve is m/n, where m and n are relatively prime positive
integers. What is m + n?
Answers
41.1.1 5100
41.1.2 2018
41.1.3 1
41.1.4 50
41.2.1 1
41.2.2 20
41.2.3 841
19
41.2.5 540
41.2.6 849
548
Chapter 42
Logarithms
Video Lectures
Logarithms
logx y = a =⇒ xa = y
.
549
OmegaLearn.org Chapter 42. Logarithms
loga ar = r
b
loga = loga b − loga c
c
loga bc = c loga b
1
logb a =
loga b
logd a
logb a =
logd b
Remark 42.2.2
This last formula is known as the ”Base Change Formula” and is the most useful of them
all. Often times in logarithm problems you can just expand out your expression in terms
of this formula and simplify the expression to get the answer.
Remark 42.2.3
These formulas are extremely important for working with logarithms and should definitely
be memorized.
Remark 42.2.4
If you ever forget which way the sign of these logarithms are, you can just try a small
example like log10 100 + log10 1000 = log10 100, 000 so from here for example you could
figure out the sum of logarithms identity.
550
OmegaLearn.org Chapter 42. Logarithms
Remark 42.2.5
Natural Logarithm (Base e) where e is the Euler’s Number = 2.71828
A logarithm with a base of e is a called a natural log and is written as ln
1
loga = − loga b
b
log 1 b = − loga b
a
Remark 42.2.7
These formulas are less important and aren’t necessary for most logarithm problems,
but still good to know.
Concept 42.2.8
When you take a logarithm of numbers which form a geometric progression, the logarithms
of those numbers form an arithmetic progression.
Video Solution
551
OmegaLearn.org Chapter 42. Logarithms
Video Solution
1
What is the value of (625log5 2015 ) 4 ?
Video Solution
Video Solution
Video Solution
The sequence
log12 162, log12 x, log12 y, log12 z, log12 1250
is an arithmetic progression. What is x?
552
OmegaLearn.org Chapter 42. Logarithms
Video Solution
For how many positive integers x is log10 (x − 40) + log10 (60 − x) < 2 ?
Video Solution
and all four terms on the left are positive integers, where log denotes the base 10 logarithm.
What is ab?
(A) 1052 (B) 10100 (C) 10144 (D) 10164 (E) 10200
Video Solution
Video Solution
Video Solution
The value of x that satisfies log2x 320 = log2x+3 32020 can be written as m
n
, where m
and n are relatively prime positive integers. Find m + n.
Video Solution
553
OmegaLearn.org Chapter 42. Logarithms
Positive real numbers x ̸= 1 and y ̸= 1 satisfy log2 x = logy 16 and xy = 64. What is
(log2 xy )2 ?
(A) 25
2
(B) 20 (C) 45
2
(D) 25 (E) 32
Video Solution
Video Solution
Video Solution
Video Solution
554
OmegaLearn.org Chapter 42. Logarithms
Additional Problems
Problem 42.3.15 (AMC 10)
The sum of the base-10 logarithms of the divisors of 10n is 792. What is n?
In a Martian civilization, all logarithms whose bases are not specified as assumed
to be base b, for some fixed b ≥ 2. A Martian student writes down
√
3 log( x log x) = 56
loglog x (x) = 54
and finds that this system of equations has a single real number solution x > 1. Find b.
Let S be the sum of the base 10 logarithms of all the proper divisors (all divisors
of a number excluding itself) of 1000000. What is the integer nearest to S?
555
OmegaLearn.org Chapter 42. Logarithms
7
log3 (xn ) = 308
X
n=0
and
7
!
56 ≤ log3 xn ≤ 57,
X
n=0
The solution of the equation 7x+7 = 8x can be expressed in the form x = logb 77 .
What is b?
556
OmegaLearn.org Chapter 42. Logarithms
The numbers log(a3 b7 ), log(a5 b12 ), and log(a8 b15 ) are the first three terms of an arithmetic
sequence, and the 12th term of the sequence is log bn . What is n?
The number
2
+ log 2000
log4 20006
3
6 can be written as
m
n
where m and n are relatively prime positive
5
integers. Find m + n.
The domain of the function f (x) = log 1 (log4 (log 1 (log16 (log 1 x)))) is an interval of
2 4 16
length m
n
, where m and n are relatively prime positive integers. What is m + n?
The solutions to the equation log3x 4 = log2x 8, where x is a positive real number
other than 13 or 12 , can be written as pq where p and q are relatively prime positive integers.
What is p + q?
The solutions to the equation log3x 4 = log2x 8, where x is a positive real number
other than 13 or 12 , can be written as pq where p and q are relatively prime positive integers.
What is p + q?
557
OmegaLearn.org Chapter 42. Logarithms
Let m > 1 and n > 1 be integers. Suppose that the product of the solutions for x
of the equation
Let S be the set of ordered triples (x, y, z) of real numbers for which
Answers
42.3.1 24
42.3.2 6
42.3.3 2015
42.3.4 13
42.3.5 13
42.3.6 270
42.3.7 18
42.3.8 10164
q q
42.3.9 log2 3 + log3 2
558
OmegaLearn.org Chapter 42. Logarithms
42.3.10 103
42.3.11 20
42.3.13 2
42.3.14 2 ≤ S < 6
3
42.3.15 2
42.3.16 11
42.3.17 216
42.3.18 141
42.3.19 881
42.3.20 046
3
42.3.21 5
42.3.22 091
8
42.3.23 7
42.3.24 −1
42.3.25 112
42.3.26 512
42.3.27 007
42.3.28 271
42.3.29 31
42.3.30 31
42.3.31 12
29
42.3.32 2
559
Chapter 43
Algebraic Trigonometry
Note: This topic is mainly relevant for AMC 12, but knowing some concepts can help make
some AMC 10 problems easier to solve.
560
OmegaLearn.org Chapter 43. Algebraic Trigonometry
Remark 43.1.2
To remember the relationships, just use the mnemonics SOH, CAH, TOA:
SOH = Sin is Opposite over Hypotenuse
CAH = Cos is Adjacent over Hypotenuse
TOA = Tan is Opposite over Adjacent
561
OmegaLearn.org Chapter 43. Algebraic Trigonometry
cos 0° = 1 √ sin 0° = 0 √
cos 15° = 23+1
√
2
sin 15° = 23−1
√
2
√
cos 30° = √23 sin 30° = 1√
2
cos 45° = 22 sin 45° = √22
cos 60° = 1√
2
sin 60° = √23
cos 75° = 23−1
√
2
sin 75° = 23+1
√
2
cos 0° = 1 sin 0° = 0
cos 90° = 0 sin 90° = 1 √
cos 120° = − 12√ sin 120° = √23
cos 135° = − √22 sin 135° = 22
cos 150° = − 23 sin 150° = 12
cos 180° = 1 sin 0° = 0
562
OmegaLearn.org Chapter 43. Algebraic Trigonometry
sin(−a) = − sin(a)
sin(a) = sin(180 − a)
cos(a) = cos(−a)
cos(a) = − cos(180 − a)
tan(a) = − tan(180 − a)
tan(−a) = − tan(a)
563
OmegaLearn.org Chapter 43. Algebraic Trigonometry
2 tan(a)
tan(2a) =
1 − tan2 (a)
564
OmegaLearn.org Chapter 43. Algebraic Trigonometry
tan(a) + tan(b)
tan(a + b) =
1 − tan a tan b
tan(a) − tan(b)
tan(a − b) =
1 + tan a tan b
565
OmegaLearn.org Chapter 43. Algebraic Trigonometry
a+b
! !
a−b
sin(a) − sin(b) = 2 sin cos
2 2
a+b
! !
a−b
cos(a) + cos(b) = 2 cos cos
2 2
a+b
! !
a−b
cos(a) − cos(b) = −2 sin sin
2 2
566
OmegaLearn.org Chapter 43. Algebraic Trigonometry
1
cos(a) cos(b) = (cos(a − b) + cos(a + b))
2
1
sin(a) cos(b) = (sin(a + b) + sin(a − b))
2
567
OmegaLearn.org Chapter 43. Algebraic Trigonometry
Remark 43.11.4
Long trigonometric expressions can be evaluated by telescoping, using identities in clever
ways, complex number substitutions (see complex numbers section below).
Video Solution
Suppose that the roots of the polynomial P (x) = x3 + ax2 + bx + c are cos 2π
7
, cos 4π
7
, and
cos 7 , where angles are in radians. What is abc?
6π
Video Solution
568
OmegaLearn.org Chapter 43. Algebraic Trigonometry
1 − 3 sin θ + 5 cos 3θ = 0?
Video Solution
Additional Problems
Problem 43.12.4 (AMC 12)
The functions sin(x) and cos(x) are periodic with least period 2π. What is the least
period of the function cos(sin(x))?
an + an+1
an+2 = .
1 − an an+1
What is |a2009 |?
The number of x-intercepts on the graph of y = sin(1/x) in the interval (0.0001, 0.001) is
569
OmegaLearn.org Chapter 43. Algebraic Trigonometry
closest to
(A) 2900 (B) 3000 (C) 3100 (D) 3200 (E) 3300
How many solutions does the equation tan(2x) = cos( x2 ) have on the interval [0, 2π]?
(A) 1 (B) 2 (C) 3 (D) 4 (E) 5
Which of the following describes the largest subset of values of y within the closed
interval [0, π] for which
sin(x + y) ≤ sin(x) + sin(y)
for every x between 0 and π, inclusive?
570
OmegaLearn.org Chapter 43. Algebraic Trigonometry
√
(1 − sin t)(1 − cos t) = m
n
− k, where k, m, and n are positive integers with m and n
relatively prime, find k + m + n.
For each integer n > 1, let F (n) be the number of solutions to the equation sin x = sin (nx)
on the interval [0, π]. What is 2007
n=2 F (n)?
P
Answers
43.12.1 2
1
43.12.2 32
43.12.3 6
43.12.4 π
43.12.5 0
1
43.12.6 3
43.12.7 2900
3
43.12.8 5
1
43.12.9 3
43.12.10 5
571
OmegaLearn.org Chapter 43. Algebraic Trigonometry
43.12.11 0 ≤ y ≤ π
43.12.12 040
43.12.13 027
43.12.14 067
43.12.15 2016532
572
Chapter 44
Geometric Trigonometry
Note: This topic is mainly relevant for AMC 12, but knowing some concepts like Law of
Sines and Law of Cosines can help make some AMC 10 problems easier to solve.
1
Area of the triangle = · ab · sin(C)
2
573
OmegaLearn.org Chapter 44. Geometric Trigonometry
a b c
= = = 2R
sin A sin B sin C
574
OmegaLearn.org Chapter 44. Geometric Trigonometry
Video Lectures
Solving area problems using trigonometry
Video Solution
Regular octagon ABCDEF GH has area n. Let m be the area of quadrilateral ACEG.
What is m
n
?
Video Solution
575
OmegaLearn.org Chapter 44. Geometric Trigonometry
Additional Problems
Problem 44.4.3 (AHSME)
√ √
In △ABC, side a = 3, side b = 3, and side c > 3. Let x be the largest num-
ber such that the magnitude, in degrees, of the angle opposite side c exceeds x. Then x
equals:
of the hexagon?
576
OmegaLearn.org Chapter 44. Geometric Trigonometry
A
B F
C E
C H B
M
I N G
O
D A
J L
E K F
A circle centered at O has radius 1 and contains the point A. The segment AB is
tangent to the circle at A and ∠AOB = θ. If point C lies on OA and BC bisects ∠ABO,
577
OmegaLearn.org Chapter 44. Geometric Trigonometry
then OC =?
θ
O A
C
Alice and Bob live 10 miles apart. One day Alice looks due north from her house
and sees an airplane. At the same time Bob looks due west from his house and sees the
same airplane. The angle of elevation of the airplane is 30◦ from Alice’s position and 60◦
578
OmegaLearn.org Chapter 44. Geometric Trigonometry
from Bob’s position. Which of the following is closest to the airplane’s altitude, in miles?
(A) 3.5 (B) 4 (C) 4.5 (D) 5 (E) 5.5
In triangle ABC, tan ∠CAB = 22/7, and the altitude from A divides BC into seg-
ments of length 3 and 17. What is the area of triangle ABC?
In △P QR, P R = 15, QR = 20, and P Q = 25. Points A and B lie on P Q, points C and D
lie on QR, and points E and F lie on P R, with P A = QB = QC = RD = RE = P F = 5.
Find the area of hexagon ABCDEF .
579
OmegaLearn.org Chapter 44. Geometric Trigonometry
U N G
1 1
36◦ 56◦
P M A
10
Let △ABC have side lengths AB = 30, BC = 32, and AC = 34. Point X lies in
the interior of BC, and points I1 and I2 are the incenters of △ABX and △ACX,
respectively. Find the minimum possible area of △AI1 I2 as X varies along BC.
580
OmegaLearn.org Chapter 44. Geometric Trigonometry
Answers
44.4.1 37 : 1
√
2
44.4.2 2
44.4.3 120
44.4.4 30
44.4.5 20
√
44.4.6 12 3
44.4.7 011
1
44.4.8 1+sin heta
44.4.9 089
44.4.10 5.5
44.4.11 110
44.4.12 090
44.4.13 120
44.4.14 80
44.4.15 9
44.4.16 15
44.4.17 126
581
Chapter 45
Complex Numbers
Remark 45.1.3
√
Powers of i cycle every 4 terms, so i4n = i4 = 1, i4n+1 = i = −1, i4n+2 = i2 =
−1, i4n+3 = i3 = −i
582
OmegaLearn.org Chapter 45. Complex Numbers
Definition 45.1.7 (Real and Imaginary Parts). The imaginary part of a complex number
a + bi is b and the real part is a.
Remark 45.1.8
The imaginary part does not include a factor of i.
45.2 Conjugates
Definition 45.2.1. A complex conjugate is found by flipping the sign of the imaginary part
of complex number, and is represented as z̄.
z = a + bi = a − bi
(a + bi)(a − bi) = a2 + b2
583
OmegaLearn.org Chapter 45. Complex Numbers
Definition 45.4.2. The magnitude of a complex number is represented by |z|, and is the
distance of a complex number (a, b) from the origin.
Definition 45.5.3. The distance between 0 and a complex number is sometimes called the
modulus of that complex number and is represented by r.
584
OmegaLearn.org Chapter 45. Complex Numbers
Definition 45.5.5. Polar form is another way to represent a complex number based on its
modulus r and argument θ.
Remark 45.5.7
cis θ is just short for cos θ + i sin θ
Remark 45.5.8
Trigonometric ratios tell us that cos θ = ar and sin θ = rb , which we can rearrange to see
that r cos θ = a and r sin θ = b. Plugging in these values gives us the polar form formula.
Remark 45.5.9
cos θ + i sin θ can also be written as cis θ.
Remark 45.5.11
Euler’s Identity is a special case of Euler’s Formula and tells us that
eπi = −1
585
OmegaLearn.org Chapter 45. Complex Numbers
Remark 45.5.13
We can use this to evaluate expressions like
(3 + 2i)8
much easier because we just convert to polar form and apply De Moivre’s Theorem.
Remark 45.5.14
DeMoivre’s Theorem is very useful when dealing with complex numbers and exponents.
Concept 45.5.16
Complex numbers and their relations to circles makes them easy to work with for many
geometry problems, especially when dealing with polygons such as equilateral triangles
or squares.
How to solve geometry problems using complex numbers:
3. Use the information you have to solve for what you are asked in the problem
Remark 45.5.17
We can also view algebraic complex number problems geometrically.
586
OmegaLearn.org Chapter 45. Complex Numbers
eiθ + ei(180−θ)
sin θ =
2i
eiθ + ei(−θ)
cos θ =
2
eiθ + ei(180−θ)
tan θ = i
eiθ + ei(−θ)
Remark 45.7.2
By using these substitutions, we can bash out the value of trigonometric expressions
easily without clever manipulation of trigonometric identities that would be needed to
solve the problem otherwise.
587
OmegaLearn.org Chapter 45. Complex Numbers
Of the following complex numbers z, which one has the property that z 5 has the greatest
real part?
√ √ √ √
(A) − 2 (B) − 3 + i (C) − 2 + 2i (D) − 1 + 3i (E) 2i
Video Solution
Video Solution
Let Z be a complex number satisfying 12|z|2 = 2|z + 2|2 + |z 2 + 1|2 + 31. What is
the value if z + z6 ?
Video Solution
588
OmegaLearn.org Chapter 45. Complex Numbers
Additional Problems
Problem 45.8.4 (AMC 12)
There are 24 different complex numbers z such that z 24 = 1. For how many of these is z 6
a real number?
Problem 45.8.5
[AMC 12] What is the sum of the roots of z 12 = 64 that have a positive real part?
The polynomial f (x) = x4 +ax3 +bx2 +cx+d has real coefficients, and f (2i) = f (2+i) = 0.
What is a + b + c + d?
√
A function f is defined by f (z) = iz, where i = −1 and z is the complex conju-
gate of z. How many values of z satisfy both |z| = 5 and f (z) = z?
Find c if a, b, and c are positive integers which satisfy c = (a + bi)3 − 107i, where
i2 = −1.
589
OmegaLearn.org Chapter 45. Complex Numbers
There is a complex number z with imaginary part 164 and a positive integer n such that
z
= 4i.
z+n
Find n.
There are real numbers a, b, c, and d such that −20 is a root of x3 + ax +√b and −21 is a
root of x3 + cx2 + d. These two polynomials
√ share a complex root m + n · i, where m
and n are positive integers and i = −1. Find m + n.
What is the sum of the roots of z 12 = 64 that have a positive real part?
The complex numbers z and w satisfy z 13 = w, w11 = z, and the imaginary part
of z is sin mπ
n
, for relatively prime positive integers m and n with m < n. Find n.
The complex number z is equal to 9 + bi, where b is a positive real number and i2 = −1.
Given that the imaginary parts of z 2 and z 3 are the same, what is b equal to?
590
OmegaLearn.org Chapter 45. Complex Numbers
z+i
Let F (z) = for all complex numbers z =
̸ i, and let zn = F (zn−1 ) for all posi-
z−i
1
tive integers n. Given that z0 = + i and z2002 = a + bi, where a and b are real
137
numbers, find a + b.
izn
zn+1 = ,
zn
where zn is the complex conjugate of zn and i2 = −1. Suppose that |z0 | = 1 and z2005 = 1.
How many possible values are there for z0 ?
For how many positive integers n less than or equal to 1000 is (sin t + i cos t)n =
sin nt + i cos nt true for all real t?
591
OmegaLearn.org Chapter 45. Complex Numbers
Let N be the number of complex numbers z with the properties that |z| = 1 and
z 6! − z 5! is a real number. Find the remainder when N is divided by 1000.
The solutions to the equation (z + 6)8 = 81 are connected in the complex plane to
form a convex regular polygon, three of whose vertices are labeled A, B, and C. What is
the least possible area of △ABC?
The equation
x10 + (13x − 1)10 = 0 has 10 complex roots r1 , r1 , r2 , r2 , r3 , r3 , r4 , r4 , r5 , r5 , where the
bar denotes complex conjugation. Find the value of
Let R be the region in the complex plane consisting of all complex numbers z that
can be written as the sum of complex numbers z1 and z2 , where z1 lies on the segment
with endpoints 3 and 4i, and z2 has magnitude at most 1. What integer is closest to the
area of R?
592
OmegaLearn.org Chapter 45. Complex Numbers
Let c be a real number, and let z1 and z2 be the two complex numbers satisfying
the equation z 2 − cz + 10 = 0. Points z1 , z2 , z11 , and z12 are the vertices of (convex)
quadrilateral Q in the complex plane. When the area of Q obtains its maximum possible
value, c is closest to which of the following?
The points (0, 0) , (a, 11) , and (b, 37) are the vertices of an equilateral triangle. Find the
value of ab .
√ √ √
The solutions to the equations z 2 = 4 + 4 15i and z 2 = 2 + 2 3i, where i = −1, form
the vertices of a parallelogram in
√ the complex plane. The area of this parallelogram can
√
be written in the form p q − r s, where p, q, r, and s are positive integers and neither
q nor s is divisible by the square of any prime number. What is p + q + r + s?
Answers
√
45.8.1 − 3 + i
45.8.2 −z
45.8.3 −2
45.8.4 12
593
OmegaLearn.org Chapter 45. Complex Numbers
√ √
45.8.5 2 2 + 6
45.8.6 9
45.8.7 2
45.8.8 198
45.8.9 97
45.8.10 697
45.8.11 330
√ √
45.8.12 2 2 + 6
45.8.13 071
√
45.8.14 2
45.8.15 015
45.8.16 275
45.8.17 000
45.8.18 22005
45.8.19 250
1
45.8.20 298
45.8.21 440
45.8.22 100
√
45.8.23 32 2 − 3
2
45.8.24 850
45.8.25 13
45.8.26 840
45.8.27 4.5
45.8.28 315
45.8.29 20
594
Chapter 46
Video Lectures
Meta-solving Techniques
Definition 46.1.1. Meta-solving is finding the answer to a problem without actually solving
it.
Remark 46.1.2
These techniques may not work for all problems. These techniques are especially useful
when the problem provides answer choices.
2. Look for a pattern amongst those small cases (there may not always be one)
595
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
3. Assume the pattern can continue for larger cases and find the answer
Remark 46.1.5
We can try to apply engineering induction when we see the values in the problem seem
hard/impossible to compute.
596
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
Some unique properties you can look for in your answer choices and try to compute are
• Units Digit
• Last 2 digits
• Prime/composite
• Multiples/Factors of numbers
• etc.
Remark 46.1.7
These last 2 properties are especially useful in combinatorics problems as you can easily
find numbers you have to multiply with each other to get your answer.
Concept 46.1.8
Look for the option choices that are the ”odd one out” or that are different from all
others
• Try all the option choices into the conditions in the problem
• Look at the conditions in the problem and see which of the option choices could
work
597
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
• etc.
After doing so, you will either have a better guess or exact answer.
Remark 46.1.11
We would recommend guessing ONLY if you can narrow it to 2 or 3 option choices.
Essentially, as long as the problem is not telling you ”this fact is not true” (so, whatever
assumption you want to make will satisfy the problem’s conditions) you can assume the
fact is true to simplify your problem and make it really easy to solve.
For example, if you are asked to find some universal ratio in a triangle and you aren’t
specifically told that the triangle isn’t equilateral, you can just assume the triangle is
equilateral and solve the remaining problem from there.
Remark 46.1.14
Make sure not to assume false information! Be very careful that your assumption can be
true.
In our previous example, if we were told the triangle had 2 sides of length 7 and
8, then our assumption would be false, so it wouldn’t work then.
598
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
• Do your computation 2 ways (e.g. If you have to do 87 · 93, you can multiply them
with 87 on the top and with 93 on top)
• Check your work, following the tip above will make it easier to do so
• Try to substitute your answer back into the problem (if you can)
• Estimate what the answer has to be, and see if your answer is close to what your
estimate is
• inclusive, except
• even, odd
• prime, composite
599
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
• After solving the problem, reread the question part of the problem to make sure
you are answering what the question asks for!
• Underline key words while reading (that’s probably gonna be hard this year with
the test being online, but as an alternative you can take note of the important
words on your scratch paper)
For example, in a problem you might think ”I’ll multiply by 5 to whatever answer
I get” and then you find that answer but forget to multiply by 5. A way to avoid this is:
• Write ”Remember ...” big and bold on your scratch or the question paper
Remark 46.2.5
A very common reading mistake is getting confused between the words non-negative and
positive. Remember, non-negative includes 0 while positive doesn’t!
• Undercount possibilities
• Overcount possibilities
600
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
– An easy way to do this is just to try a few examples in your case to see if they
actually work
– Especially, make sure to check if extremes work
– Make sure all your cases are disjoint and that you are not overcounting
anything that’s common between the cases
– Make sure your cases cover all possibilities that the problem asks for
– Solve the problem in multiple ways (for example, by both casework and
complementary counting)
Remark 46.2.8
I know that some of these strategies may take a lot of extra time to follow so we
recommend analyzing how you are making silly mistakes and from there see which
strategies you will want to follow.
601
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
• Questions 1-10 are generally easy, 11-20 are medium, 21-25 are hard
• Sometimes one of the early questions can be hard or bashy, or a later question can
be easy
• Star any question you are unsure about but you feel you can solve it, or any
questions that you solved but are not confident of your answer
• Leave some time to review starred problems and check your work
• You get 1.5 points for leaving a question blank, so if you don’t know how to solve
the problem, just leave it blank
• If you can narrow down the choices to 2-3 options, only then make an educated
guess
• Be relaxed
602
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
– Meditate
– Eat dark chocolate
– Listen to music
– Or whatever else makes you feel relaxed
• When you are stuck, try to use the information in the problem you haven’t used
yet
• Don’t get too stuck with one approach to a problem, move on, and come back to
the problem with a fresh perspective
• In problems that seem complex, try small cases to look for a pattern that can allow
you to figure out how to approach the problem and what patterns may exist (this
is similar to engineering induction)
Remark 46.3.7
Another strategy for the AMC 10/12B is that if you are expecting a AIME qualifying
score on the AMC 10/12A, then you should try to solve more problems and take a
”higher risk higher reward” approach for the AMC 10/12B, however if you didn’t do
good on the A, you should take a safe path.
Remark 46.3.8
Last, but most important, don’t stress out too much about how you will do! It’s just a
math contest, and you’ll probably have many more opportunities in the future.
Good luck to you on your math competitions. We hope you found this book useful!
If you have any feedback, find any errors, or think of any interesting problems that should be
603
OmegaLearn.org Chapter 46. Additional Techniques and Strategies
added here, please fill out this Feedback Form or email us at omegalearn.info@gmail.org.
We appreciate your feedback and will update the book regularly by adding new topics
and problems. Please bookmark to get the Latest Version of this book.
604