graphic

Lesson Plans - Grade 8 Math


When you see this mouse graphic click it for more information!

A number like this [1.2.2] is a state benchmark for math. Click it to link to the benchmarks.
Look up the meaning of math terms [Here ]Link Graphic [and here!]Link Graphic
1-8-2001
1. HW Constructions.2. P199-200 6-20....3. .................
4. .................5. .................6. .................

OBJECTIVE: Identify [congruent ]Link Graphicand [similar]Link Graphic figures(5-6, Pp197ff)[1.3.5] ACTIVITIES: Do pages 199-200, Problems 6-20 NOTES: Need to reinformce the meaning of 'same shape' to include proportional sides. HOMEWORK: Make a mini-poster which demonstrates 'corresponding sides'.

1-9-2001
1. HW Mini-Poster...2. P213 Ex 1 Copy...3. .................
4. .................5. .................6. .................

OBJECTIVE: Use divisibility rules for 2, 3, 4,5, 6, 8, 9, and 10. (6-1, Pp212ff)[1.1.3] ACTIVITIES: Read page 212. Copy Example 1 in its entirety. Introduce/review short division. Modelthe process. Time permitting, review in class NOTES: HOMEWORK: Solve using short division: 6)3476 8)2457 9)1167 3)9636

[Divisibility rules]Link Graphic [rules of divisibility game]Link Graphic
[Another 'rules of divisibility']Link Graphic [Additional division rules and tests]Link Graphic

1-10-2001
1. HWShortDivision..2. DvsbltyRules.....3. .................
4. .................5. .................6. .................

OBJECTIVE: Divisibility practice; Find the prime factorization of a composite number(6-2, Pp215ff)[1.1.3] ACTIVITIES: 1)Using the procedure listed on p213 in Example #1, DETERMINE WHETHER 720 IS DIVISIBLE BY 2, 3, 4,5, 6, 8, 9 OR 10. Review the terms and practices of prime factorization including [FACTOR TREES.]Link Graphic NOTES: [[See also Sieve of Eratosthenes]]Link Graphic HOMEWORK: Define in COMPLETE SENTENCES prime; composite; prime factorization; factor tree; and the Fundamental Theorem of Arithmetic.

1-11-2001
1. HW Prime Define..2. Factor Trees.....3. Factor Lists.....
4. .................5. .................6. .................

OBJECTIVE: Review Factors/Prime factors and divisibility ACTIVITIES: Write/use computer programs to find divisibility and prime factors. Others practice factor trees. NOTES: 706 534 580 290 303 775 15 761 814 709 47 415 862 790 374 962 871 58 949 365 (Also use the prfactor.exe program for the PRIME FACTORS) HOMEWORK: P595(6-2) 11-18

1-12-2001
1. HW595(6-2)11-18..2. Factor Trees.....3. Factor Lists.....
4. .................5. .................6. .................

OBJECTIVE: Review Factors/Prime factors and divisibility ACTIVITIES: Write/use computer programs to find divisibility and prime factors. Others practice factor trees. NOTES: 706 534 580 290 303 775 15 761 814 709 47 415 862 790 374 962 871 58 949 365 (Also use the prfactor.exe program for the PRIME FACTORS) HOMEWORK: None

When you see this mouse graphic click it for more information!

No Problem Of the Week

Extra Credit Assignments

Unexplained answers receive NO credit!
  • [How to write a solution]Link Graphic
  • [Written problem scoring guide]Link Graphic
  • Extra Credit problem due no later than 1-12-2001[1.3.2][1.3.5] Page 199 1, 3, 4, 5. On 3 and 4 change "draw" to "construct." All statements must be in complete sentences. Do not use pronouns.
  • Other extra credit from problem sheets (See Mr. LeMieux)

Computer program for 1-11 and 1-12 (Note: QBasic, which will execute this program is shipped with Windows 95, 98 and 2000. However, it is not usually installed and must be copied from the CD)

BASIC program->divisibility(OHMS/JL/11-2000) CLS PRINT "Enter the number to check...." INPUT x FOR n = 1 TO INT(x / 2) y = x / n IF y = INT(y) THEN a$ = a$ + STR$(n) + " " NEXT PRINT x; " is divisible by "; PRINT a$ PRINT : PRINT "Hit ENTER to restart..." INPUT r$ CLS RUN