Week 2 — Quadratics + Sequences End-to-End

← Back to main study plan | ← Week 1

Goal this week: finish what you start. Quadratic formula all the way to simplest radical form, and arithmetic sequences without off-by-one errors.

Time: ~60 min weekdays, ~75 min Saturday.

Heuristics in heavy use: H3 (count gaps not dots), H4 (simplest form), H5 (re-do heavy arithmetic).


Monday — Discriminants + Radical Simplification

Objective

Build instant fluency with the discriminant b24acb^2 - 4ac and radical simplification. This is the most error-prone single line in the quadratic formula (Q32 on June 25).

Instructions

  1. Memorize the radical-simplification table. Cover the right column and quiz yourself until you can answer all 12 in under 30 seconds.
  2. Do all 8 discriminant problems. Compute b24acb^2 - 4ac, then simplify the radical, but stop there — don’t solve the full quadratic yet.
  3. For every problem, recompute the discriminant on a side line (H5).

Radical-simplification table (memorize)

nnn\sqrt{n}nnn\sqrt{n}
8222\sqrt{2}32424\sqrt{2}
12232\sqrt{3}45353\sqrt{5}
18323\sqrt{2}48434\sqrt{3}
20252\sqrt{5}50525\sqrt{2}
27333\sqrt{3}72626\sqrt{2}
28272\sqrt{7}75535\sqrt{3}

Pattern hint: find the largest perfect square that divides nn (4, 9, 16, 25, 36, 49, 64, 81, 100), take its root outside, leave the rest inside.

Practice problems — discriminant only

For each quadratic ax2+bx+c=0ax^2 + bx + c = 0, identify aa, bb, cc, compute the discriminant, and simplify the radical.

#Equationa,b,ca, b, cDiscriminantdisc\sqrt{\text{disc}} simplified
1x2+6x+5=0x^2 + 6x + 5 = 01,6,51, 6, 53620=1636 - 20 = 1644
22x2+4x3=02x^2 + 4x - 3 = 02,4,32, 4, -316+24=4016 + 24 = 402102\sqrt{10}
33x26x1=03x^2 - 6x - 1 = 03,6,13, -6, -136+12=4836 + 12 = 48434\sqrt{3}
4x2+2x7=0x^2 + 2x - 7 = 01,2,71, 2, -74+28=324 + 28 = 32424\sqrt{2}
56x2+2x1=06x^2 + 2x - 1 = 0 (Q32!)6,2,16, 2, -14+24=284 + 24 = 28272\sqrt{7}
64x24x1=04x^2 - 4x - 1 = 04,4,14, -4, -116+16=3216 + 16 = 32424\sqrt{2}
75x2+10x+1=05x^2 + 10x + 1 = 05,10,15, 10, 110020=80100 - 20 = 80454\sqrt{5}
82x23x4=02x^2 - 3x - 4 = 02,3,42, -3, -49+32=419 + 32 = 4141\sqrt{41} (prime — leave it)

Self-check question

What does it mean when the discriminant is negative? (No real solutions; the parabola doesn’t cross the xx-axis.)


Tuesday — Quadratic Formula End-to-End

Objective

Carry the quadratic formula through all six steps to simplest radical form, every time. This directly fixes Q32.

The 6-step checklist (tape this above your desk)

  1. Write aa, bb, cc on their own lines.
  2. Substitute into x=b±b24ac2ax = \dfrac{-b \pm \sqrt{b^2 - 4ac}}{2a} with parentheses around negatives.
  3. Compute discriminant on a separate line. Recompute (H5).
  4. Simplify the radical (largest perfect-square factor).
  5. Reduce the fraction (factor a GCF out of numerator AND denominator).
  6. Write both answers (or use ±\pm).

Practice problems — full end-to-end

Solve each. Write your final answer in simplest radical form.

#EquationAnswer
1x2+6x+4=0x^2 + 6x + 4 = 0x=3±5x = -3 \pm \sqrt{5}
22x2+4x3=02x^2 + 4x - 3 = 0x=2±102x = \dfrac{-2 \pm \sqrt{10}}{2}
33x26x1=03x^2 - 6x - 1 = 0x=3±233x = \dfrac{3 \pm 2\sqrt{3}}{3}
46x2+2x1=06x^2 + 2x - 1 = 0 (Q32)x=1±76x = \dfrac{-1 \pm \sqrt{7}}{6}
54x24x1=04x^2 - 4x - 1 = 0x=1±22x = \dfrac{1 \pm \sqrt{2}}{2}
65x2+10x+1=05x^2 + 10x + 1 = 0x=5±255x = \dfrac{-5 \pm 2\sqrt{5}}{5}
Worked solution for #4 (the original Q32)

a=6, b=2, c=1a = 6,\ b = 2,\ c = -1.

Substitute: x=(2)±(2)24(6)(1)2(6)x = \dfrac{-(2) \pm \sqrt{(2)^2 - 4(6)(-1)}}{2(6)}

Discriminant: 44(6)(1)=4+24=284 - 4(6)(-1) = 4 + 24 = 28. Recompute: 4+24=284 + 24 = 28 ✓.

x=2±2812x = \dfrac{-2 \pm \sqrt{28}}{12}

Simplify radical: 28=27\sqrt{28} = 2\sqrt{7}.

x=2±2712x = \dfrac{-2 \pm 2\sqrt{7}}{12}

Reduce: factor 2 out of numerator and denominator.

x=1±76\boxed{x = \dfrac{-1 \pm \sqrt{7}}{6}}

Worked solution for #3 (negative b)

a=3, b=6, c=1a = 3,\ b = -6,\ c = -1.

Substitute: x=(6)±(6)24(3)(1)2(3)=6±36+126=6±486x = \dfrac{-(-6) \pm \sqrt{(-6)^2 - 4(3)(-1)}}{2(3)} = \dfrac{6 \pm \sqrt{36 + 12}}{6} = \dfrac{6 \pm \sqrt{48}}{6}.

48=43\sqrt{48} = 4\sqrt{3}.

x=6±436x = \dfrac{6 \pm 4\sqrt{3}}{6}

Reduce: divide numerator and denominator by 2.

x=3±233\boxed{x = \dfrac{3 \pm 2\sqrt{3}}{3}}

Self-check question

After step 4, why might you still need step 5? (Because the GCF in the numerator may share a factor with the denominator — common when bb is even and aa has a factor of 2.)


Wednesday — Choose Your Method: Factoring vs. Formula

Objective

Pick the cheapest tool for the job. Not every quadratic deserves the full formula.

Decision rule

  1. Try factoring first if a=1a = 1 and you can find two integers that multiply to cc and add to bb in under 15 seconds.
  2. Use the formula if factoring doesn’t pop in 15 seconds, or if a1a \neq 1 and the leading coefficient is awkward.
  3. Complete the square is rarely tested for Regents end-to-end solving — skip unless explicitly asked.

Practice problems

For each, write F (factor) or Q (quadratic formula) in the margin, justify in one sentence, then solve.

#EquationMethodSolutions
1x25x+6=0x^2 - 5x + 6 = 0Fx=2,3x = 2, 3
2x2+7x+10=0x^2 + 7x + 10 = 0Fx=2,5x = -2, -5
32x2+5x3=02x^2 + 5x - 3 = 0F (AC method) or Qx=3,12x = -3, \tfrac{1}{2}
4x24x7=0x^2 - 4x - 7 = 0Q (doesn’t factor over integers)x=2±11x = 2 \pm \sqrt{11}
5x2+8x+16=0x^2 + 8x + 16 = 0F (PST)x=4x = -4 (double root)
63x2+4x2=03x^2 + 4x - 2 = 0Qx=2±103x = \dfrac{-2 \pm \sqrt{10}}{3}
Worked solution for #3 (AC method)

2x2+5x3=02x^2 + 5x - 3 = 0

AC = 2(3)=62 \cdot (-3) = -6. Find two numbers that multiply to 6-6 and add to +5+5: those are +6+6 and 1-1.

Split the middle: 2x2+6xx3=02x^2 + 6x - x - 3 = 0.

Group: 2x(x+3)1(x+3)=0    (2x1)(x+3)=02x(x + 3) - 1(x + 3) = 0 \implies (2x - 1)(x + 3) = 0.

x=12x = \tfrac{1}{2} or x=3x = -3.

Self-check question

How can you check a factored quadratic? (Multiply the factors back out — should equal the original. Or, plug each root into the original equation.)


Thursday — Arithmetic & Geometric Sequences

Objective

Eliminate the off-by-one error that cost a point on Q28 (used d=9d = 9 instead of d=6d = 6). Always draw the dot-and-gap diagram first (H3).

The two formulas

Arithmetic: an=a1+(n1)da_n = a_1 + (n - 1)\,d where d=an+1and = a_{n+1} - a_n (the common difference).

Geometric: an=a1rn1a_n = a_1 \cdot r^{\,n-1} where r=an+1/anr = a_{n+1}/a_n (the common ratio).

The dot-and-gap diagram

For “find dd when a1a_1 and aka_k are given”:

a1da2ddaka_1 \xrightarrow{d} a_2 \xrightarrow{d} \cdots \xrightarrow{d} a_k

Count the arrows (= k1k - 1). Then (k1)d=aka1(k - 1)\,d = a_k - a_1.

Practice problems

#ProblemAnswer
1Arithmetic: a1=20a_1 = -20, a4=2a_4 = -2. Find a8a_8. (Q28)d=6d = 6, a8=22a_8 = 22
2Arithmetic: a1=7a_1 = 7, a5=23a_5 = 23. Find a10a_{10}.d=4d = 4, a10=43a_{10} = 43
3Arithmetic: a3=11a_3 = 11, a8=36a_8 = 36. Find a1a_1.d=5d = 5, a1=1a_1 = 1
4Arithmetic: a1=100a_1 = 100, d=7d = -7. Find a15a_{15}.a15=2a_{15} = 2
5Geometric: a1=3a_1 = 3, r=2r = 2. Find a6a_6.a6=96a_6 = 96
6Geometric: 12, 6, 3, 32\tfrac{3}{2}, … find ana_n formula.an=12(12)n1a_n = 12 \cdot (\tfrac{1}{2})^{n-1}
7Geometric: a1=5a_1 = 5, a4=40a_4 = 40. Find rr and a6a_6.r=2r = 2, a6=160a_6 = 160
8Arithmetic: a1=3a_1 = -3, a10=24a_{10} = 24. Find dd.d=3d = 3
9Geometric: a2=18a_2 = 18, a5=486a_5 = 486. Find a1a_1 and rr.r=3r = 3, a1=6a_1 = 6
10Arithmetic: 8th term is 30, 12th term is 50. Find a1a_1.d=5d = 5, a1=5a_1 = -5
Worked solution for #3 (a₃ and a₈ given)

Diagram: a3da4da5da6da7da8a_3 \xrightarrow{d} a_4 \xrightarrow{d} a_5 \xrightarrow{d} a_6 \xrightarrow{d} a_7 \xrightarrow{d} a_8

5 arrows from a3a_3 to a8a_8. So 5d=3611=25    d=55d = 36 - 11 = 25 \implies d = 5.

Then to get a1a_1: a1=a32d=1110=1a_1 = a_3 - 2d = 11 - 10 = 1.

Worked solution for #9 (geometric, given non-first terms)

a5/a2=r3a_5 / a_2 = r^3 (3 ratio gaps from a2a_2 to a5a_5).

486/18=27    r3=27    r=3486 / 18 = 27 \implies r^3 = 27 \implies r = 3.

a1=a2/r=18/3=6a_1 = a_2 / r = 18 / 3 = 6.

Self-check question

If you’re told a3=11a_3 = 11 and a8=36a_8 = 36, how many gaps are between them? (5 gaps, not 6 — that’s the count 838 - 3.)


Friday — Mixed Part II / III Short Response

Objective

Apply the heuristics under timed short-response conditions. Self-grade strictly.

Instructions

  1. Set timer for 30 minutes.
  2. Solve all 6 problems with full work shown.
  3. Use the 6-step quadratic checklist and the dot-and-gap diagram where applicable.
  4. Self-grade using the rubric below.

Practice problems

1. (2 pts) Express (3x4)(2x+5)(3x - 4)(2x + 5) as a trinomial in standard form.

2. (2 pts) Solve 4(x2)>2x+144(x - 2) > -2x + 14 for xx.

3. (2 pts) The first and third terms of an arithmetic sequence are 6 and 20. Determine the seventh term.

4. (4 pts) Using the quadratic formula, solve 3x24x2=03x^2 - 4x - 2 = 0. Express the answer in simplest radical form.

5. (4 pts) Factor completely: 4x3100x4x^3 - 100x.

6. (4 pts) The table below shows hours studied xx and quiz score yy.

xx12345
yy6068738290

State the linear regression equation rounded to the nearest hundredth, the correlation coefficient rounded to the nearest hundredth, and what the correlation coefficient indicates.

Answer key

1. 6x2+7x206x^2 + 7x - 20.

2. x>113x > \tfrac{11}{3} (or equivalent). 4x8>2x+14    6x>22    x>1134x - 8 > -2x + 14 \implies 6x > 22 \implies x > \tfrac{11}{3}.

3. d=7d = 7, a7=6+6(7)=48a_7 = 6 + 6(7) = 48.

4. x=2±103x = \dfrac{2 \pm \sqrt{10}}{3}. a=3,b=4,c=2a = 3, b = -4, c = -2. Disc =16+24=40= 16 + 24 = 40. 40=210\sqrt{40} = 2\sqrt{10}. x=4±2106=2±103x = \dfrac{4 \pm 2\sqrt{10}}{6} = \dfrac{2 \pm \sqrt{10}}{3}.

5. 4x(x5)(x+5)4x(x - 5)(x + 5).

6. y7.40x+53.40y \approx 7.40x + 53.40; r0.99r \approx 0.99; strong positive correlation between hours studied and quiz score.

Self-grade rubric

For each problem, award:

Target: 14+ / 18.


Saturday — Full Part II + Part III Timed

Objective

Measure progress on the highest point-value section (Part III was the weakest area on June 25).

Instructions

  1. Pull Part II (Q25–Q30) and Part III (Q31–Q34) from a prior Regents.
  2. Timer: 75 minutes (Part II ≈ 30 min, Part III ≈ 45 min).
  3. Work in pen. Use scratch paper for calculations, neat work on the test.
  4. Apply the 6-step quadratic checklist and the dot-and-gap diagram everywhere relevant.
  5. Score against the official Model Response Set.

Success bar for Week 2


← Back to main study plan | ← Week 1 | → Week 3