-
Notifications
You must be signed in to change notification settings - Fork 13
/
multiplication.html
1245 lines (1213 loc) · 148 KB
/
multiplication.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from math-drills.com/multiplication.php by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 30 Aug 2024 17:45:23 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<title>Multiplication Facts Worksheets</title>
<meta name="description" content="Multiplication facts worksheets including times tables, five minute frenzies and worksheets for assessment or practice.">
<meta name="keywords" content="math, mathematics, multiplication, multiply, worksheet, drill, long, lattice, facts, practice">
<link rel="stylesheet" type="text/css" href="includes/mdstyle2.070.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.002.html">
<link rel="canonical" href="multiplication.html">
<script async src="../pagead2.googlesyndication.com/pagead/js/f4290.txt?client=ca-pub-2856036633404156" crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J8KREQZRY2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J8KREQZRY2');
</script>
</head>
<body itemscope itemtype="https://schema.org/CreativeWork">
<div class="header">
<div class="logo">
<p class="pcenter">
<a href="index.html" aria-label="Home"><svg class="iconwhite size100 imdgradbg"><use xlink:href="includes/symbol-defs.006.svg#icon-math-drills-logo"></use></svg></a>
</p>
</div>
<div class="title">
<h1>
<span class="maintitle" itemprop="name">Multiplication Facts Worksheets</span> </h1>
</div>
<div class="searchform">
<form action="https://math-drills.com/search.php" method="get">
<div class="searchbox pcenter">
<input class="searchtext searchbb" type="search" aria-label="search input box" name="s" placeholder="Search for math worksheets..." value="">
<input type="hidden" name="page" value="1">
<input type="hidden" name="sort" value="weekly">
<button type="submit" value="" class="searchbutton" aria-label="Search Button"><svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-search"></use></svg></button>
</div>
</form>
</div>
</div>
<div class="navmenuwrapper">
<div class="navmenu">
<div onclick="openWNav()" title="Math Worksheet Topics">
<svg class="iconwhite"><use xlink:href="includes/symbol-defs.006.svg#icon-list2"></use></svg>
<span>Menu</span>
</div>
<a href="news/index.html" title="Math-Drills News and Updates">
<svg class="iconwhite"><use xlink:href="includes/symbol-defs.006.svg#icon-newspaper"></use></svg>
<span>News</span>
</a>
<a href="search5598.html?s=math&page=1&sort=weekly" title="Most Popular Math Worksheets This Week">
<svg class="iconwhite iorange"><use xlink:href="includes/symbol-defs.006.svg#icon-fire"></use></svg>
</a>
<a href="searchd190.html?s=math&page=1&sort=newest" title="Recently Added Math Worksheets">
<svg class="iconwhite"><use xlink:href="includes/symbol-defs.006.svg#icon-new"></use></svg>
</a>
</div>
<div id="worksheetnav" class="sidenav">
<a href="index.html" title="Home">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-home"></use></svg>
<span class="topic">Home</span>
</a>
<a href="addition.html" title="Addition Worksheets">
<svg class="iconwhite size32 igreen"><use xlink:href="includes/symbol-defs.006.svg#icon-plus"></use></svg>
<span class="topic">Addition Worksheets</span>
</a>
<a href="subtraction.html" title="Subtraction Worksheets">
<svg class="iconwhite size32 ired"><use xlink:href="includes/symbol-defs.006.svg#icon-minus"></use></svg>
<span class="topic">Subtraction Worksheets</span>
</a>
<a href="multiplication.html" title="Multiplication Worksheets -- Multiplication Facts">
<svg class="iconwhite size32 ibrown"><use xlink:href="includes/symbol-defs.006.svg#icon-times"></use></svg>
<span class="topic">Multiplication Facts Worksheets</span>
</a>
<a href="multiplication2.html" title="Multiplication Worksheets -- Long Multiplication">
<svg class="iconwhite size32 iteal"><use xlink:href="includes/symbol-defs.006.svg#icon-times"></use></svg>
<span class="topic">Long Multiplication Worksheets</span>
</a>
<a href="division.html" title="Division Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-divide"></use></svg>
<span class="topic">Division Worksheets</span>
</a>
<a href="multiop.html" title="Mixed Operations Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-equals"></use></svg>
<span class="topic">Mixed Operations Worksheets</span>
</a>
<hr>
<a href="algebra.html" title="Algebra Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-superscript"></use></svg>
<span class="topic">Algebra Worksheets</span>
</a>
<a href="baseten.html" title="Base Ten Blocks Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-cube"></use></svg>
<span class="topic">Base Ten Blocks Worksheets</span>
</a>
<a href="decimal.html" title="Decimals Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-pushpin"></use></svg>
<span class="topic">Decimals Worksheets</span>
</a>
<a href="factfamilyworksheets.html" title="Fact Family Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-star-empty"></use></svg>
<span class="topic">Fact Families Worksheets</span>
</a>
<a href="fractions.html" title="Fractions Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-braille"></use></svg>
<span class="topic">Fractions Worksheets</span>
</a>
<a href="geometry.html" title="Geometry Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-ruler"></use></svg>
<span class="topic">Geometry Worksheets</span>
</a>
<a href="graphpaper.html" title="Graph Paper">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-layout"></use></svg>
<span class="topic">Graph Paper</span>
</a>
<a href="integers.html" title="Integers Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-equalizer"></use></svg>
<span class="topic">Integers Worksheets</span>
</a>
<a href="measurement.html" title="Measurement Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-ruler2"></use></svg>
<span class="topic">Measurement Worksheets</span>
</a>
<a href="money.html" title="Money Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-dollar"></use></svg>
<span class="topic">Money Math Worksheets</span>
</a>
<a href="numberlineworksheets.html" title="Number Line Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-arrows-h"></use></svg>
<span class="topic">Number Lines Worksheets</span>
</a>
<a href="numbersense.html" title="Number Sense Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-abacus"></use></svg>
<span class="topic">Number Sense Worksheets</span>
</a>
<a href="orderofoperations.html" title="Order of Operations Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-calculator"></use></svg>
<span class="topic">Order of Operations Worksheets</span>
</a>
<a href="patterning.html" title="Patterning Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-sort-amount-asc"></use></svg>
<span class="topic">Patterning Worksheets</span>
</a>
<a href="percentsworksheets.html" title="Percentages Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-percent"></use></svg>
<span class="topic">Percentages Worksheets</span>
</a>
<a href="placevalueworksheets.html" title="Place Value Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-undo"></use></svg>
<span class="topic">Place Value Worksheets</span>
</a>
<a href="powersoften.html" title="Powers of Ten Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-power"></use></svg>
<span class="topic">Powers of Ten Worksheets</span>
</a>
<a href="statistics.html" title="Statistics Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-bar-chart"></use></svg>
<span class="topic">Statistics Worksheets</span>
</a>
<a href="timeworksheets.html" title="Time Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-clock"></use></svg>
<span class="topic">Time Math Worksheets</span>
</a>
<a href="mathwordproblems.html" title="Math Word Problems">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-file-text"></use></svg>
<span class="topic">Math Word Problems Worksheets</span>
</a>
<hr>
<a href="halloween.html" title="Halloween Math Worksheets">
<svg class="iconwhite size32 iorange"><use xlink:href="includes/symbol-defs.006.svg#icon-cat"></use></svg>
<span class="topic">Halloween Math Worksheets</span>
</a>
<a href="thanksgiving.html" title="Thanksgiving Math Worksheets">
<svg class="iconwhite size32 ithanks"><use xlink:href="includes/symbol-defs.006.svg#icon-thanksgiving"></use></svg>
<span class="topic">Thanksgiving Math Worksheets</span>
</a>
<a href="christmas.html" title="Christmas Math Worksheets">
<svg class="iconwhite size32 igreen"><use xlink:href="includes/symbol-defs.006.svg#icon-tree"></use></svg>
<span class="topic">Christmas Math Worksheets</span>
</a>
<a href="valentines.html" title="Valentine's Day Math Worksheets">
<svg class="iconwhite size32 ired"><use xlink:href="includes/symbol-defs.006.svg#icon-heart"></use></svg>
<span class="topic">Valentine's Day Math Worksheets</span>
</a>
<a href="saintpatricks.html" title="Saint Patrick's Day Math Worksheets">
<svg class="iconwhite size32 ispd"><use xlink:href="includes/symbol-defs.006.svg#icon-clover"></use></svg>
<span class="topic">Saint Patrick's Day Math Worksheets</span>
</a>
<a href="easter.html" title="Easter Math Worksheets">
<svg class="iconwhite size32 ieaster"><use xlink:href="includes/symbol-defs.006.svg#icon-easter"></use></svg>
<span class="topic">Easter Math Worksheets</span>
</a>
<a href="special.html" title="Seasonal Math Worksheets">
<svg class="iconwhite size32"><use xlink:href="includes/symbol-defs.006.svg#icon-calendar"></use></svg>
<span class="topic">Seasonal Math Worksheets</span>
</a>
<hr>
<a href="flashcards.html" title="Math Flash Cards">
<svg class="iconwhite size32 iorange"><use xlink:href="includes/symbol-defs.006.svg#icon-brightness-up"></use></svg>
<span class="topic">Math Flash Cards</span>
</a>
<a href="dots.html" title="The Dots Math Game">
<svg class="iconwhite size32 ired"><use xlink:href="includes/symbol-defs.006.svg#icon-th-small"></use></svg>
<span class="topic">Dots Math Game</span>
</a>
<a href="https://www.youtube.com/playlist?list=PLw9d4giA58-e2Z11Btyn5RXxxiZlbFRcs" title="Math-Drills Tutorials by West Explains Best" target="_blank" rel="noopener">
<svg class="iconwhite size32 ired"><use xlink:href="includes/symbol-defs.006.svg#icon-youtube"></use></svg>
<span class="topic">Video Tutorials</span>
</a>
<hr>
<a href="help.html" title="Help and Frequently Asked Questions">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-help-with-circle"></use></svg>
<span class="topic"> Help and FAQ</span>
</a>
<a href="terms.html" title="Math-Drills.com terms of use.">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-clipboard"></use></svg>
<span class="topic"> Terms of Use</span>
</a>
<a href="privacy.html" title="Math-Drills.com Privacy and Cookie Policy">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-locked"></use></svg>
<span class="topic"> Privacy and Cookie Policy</span>
</a>
<a href="tour.html" title="Math-Drills.com Introduction and Tour">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-compass2"></use></svg>
<span class="topic"> Tour/Introduction</span>
</a>
<a href="feedback.html" title="Feedback">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-bubbles4"></use></svg>
<span class="topic"> Feedback</span>
</a>
<a href="teachers.html" title="Teacher information page.">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-graduation-cap"></use></svg>
<span class="topic"> Teachers</span>
</a>
<a href="parents.html" title="Parent information page.">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-parents"></use></svg>
<span class="topic"> Parents</span>
</a>
<a href="support.html" title="Support Math-Drills">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-math-drills-logo"></use></svg>
<span class="topic"> Support Math-Drills</span>
</a>
<a href="https://www.facebook.com/freemath" title="Math-Drills.com on Facebook" target="_blank" rel="noreferrer nofollow">
<svg class="iconwhite size30"><use xlink:href="includes/symbol-defs.006.svg#icon-facebook"></use></svg>
<span class="topic"> Math-Drills on Facebook</span>
</a>
<hr>
<a href="https://mateslibres.com/" title="Ejercicios de Matemáticas Gratis" target="_blank">
<svg class="iconwhite imtgradbg size30"><use xlink:href="includes/symbol-defs.006.svg#icon-math-drills-logo"></use></svg>
<span class="topic"> Ejercicios de Matemáticas Gratis</span>
</a>
<a href="https://mathslibres.com/" title="Fiches d'Exercices de Maths" target="_blank">
<svg class="iconwhite imlgradbg size30"><use xlink:href="includes/symbol-defs.006.svg#icon-math-drills-logo"></use></svg>
<span class="topic"> Fiches d'Exercices de Maths</span>
</a>
</div>
</div> <!-- End of navmenuwrapper Div -->
<div class="tableofcontents">
<h3>Contents</h3>
<div class="toc">
<div class="h2"><a href="#most-popular"> Most Popular Multiplication Facts Worksheets this Week</a></div>
<div class="h2"><a href="#multiplication-facts-tables">Multiplication Facts Tables</a></div>
<div class="h2"><a href="#five-minute-multiplication-frenzies">Five Minute Multiplication Frenzies</a></div>
<div class="h2"><a href="#multiplication-facts-to-7-times-table">Multiplication Facts up to the 7 Times Table</a></div>
<div class="h2"><a href="#multiplication-facts-to-9-times-table">Multiplication Facts up to the 9 Times Table</a></div>
<div class="h2"><a href="#multiplication-facts-to-10-times-table">Multiplication Facts up to the 10 Times Table</a></div>
<div class="h2"><a href="#multiplication-facts-to-12-times-table">Multiplication Facts up to the 12 Times Table</a></div>
<div class="h2"><a href="#multiplication-facts-beyond-12-times-table">Multiplication Facts beyond the 12 Times Table</a></div>
</div>
</div>
<div class="content">
<div class="adwrap">
<!-- Math-Drills-Topic-1 -->
<ins class="adsbygoogle ad1"
data-ad-client="ca-pub-2856036633404156"
data-ad-slot="3625494651"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<p class="firstp">Welcome to the multiplication facts worksheets page at Math-Drills.com! On this page, you will find <span itemprop="description">Multiplication worksheets for practicing multiplication facts at various levels and in a variety of formats.</span> This is our most popular page due to the wide variety of worksheets for multiplication available. Or it could be that learning multiplication facts and multiplication strategies are essential to many topics in mathematics beyond third grade math.</p>
<p>Learning multiplication facts to the point of quick recall should be a goal for all students and will serve them well in their math studies. Multiplication facts are actually easier to learn than you might think. First of all, it is only essential to learn the facts from 1 to 9. Somewhere along the way students can learn that anything multiplied by zero is zero. Hopefully, that is an easy one. Students also need to learn to multiply by ten as a precursor to learning how to multiply other powers of ten. After those three skills are learned, everything else is long multiplication. Multiplying by 11 is actually two-digit multiplication. Now, learning fact tables of 11 and beyond will do no harm to those students who are keen and able to learn these things quickly, and it might help them figure out how many eggs are in a gross faster than anyone else, but keep it simple for those students who struggle a bit more.</p>
<div class="popular">
<h2 id="most-popular"><svg class="iconwhite size32 iorange"><use xlink:href="includes/symbol-defs.006.svg#icon-fire"></use></svg> Most Popular Multiplication Facts Worksheets this Week</h2>
<div class="searchresults">
<a href="multiplication/mult_v100_0109_0110_001.html" title="Multiplying (1 to 10) by 1 to 9 (100 Questions)"><figure><img src="multiplication/images/mult_v100_0109_0110_001_300.1675735299.jpg" alt="Multiplying (1 to 10) by 1 to 9 (100 Questions)" loading="lazy" width="250" height="324"><figcaption>Multiplying (1 to 10) by 1 to 9 (100 Questions) (<strong>9814 views this week</strong>)</figcaption></figure></a>
<a href="multiplication/multiplication_facts_to_144_no01_001.html" title="Multiplication Facts to 144 (100 Questions) (No Zeros or Ones)"><figure><img src="multiplication/images/multiplication_facts_to_144_no01_001_300.1675735301.jpg" alt="Multiplication Facts to 144 (100 Questions) (No Zeros or Ones)" loading="lazy" width="250" height="324"><figcaption>Multiplication Facts to 144 (100 Questions) (No Zeros or Ones) (<strong>7276 views this week</strong>)</figcaption></figure></a>
<a href="multiplication/mult_v100_0303_0112_001.html" title="Multiplying (1 to 12) by 3 (100 Questions)"><figure><img src="multiplication/images/mult_v100_0303_0112_001_300.1675735299.jpg" alt="Multiplying (1 to 12) by 3 (100 Questions)" loading="lazy" width="250" height="324"><figcaption>Multiplying (1 to 12) by 3 (100 Questions) (<strong>4554 views this week</strong>)</figcaption></figure></a>
<a href="multiplication/mult_v100_0202_0112_001.html" title="Multiplying (1 to 12) by 2 (100 Questions)"><figure><img src="multiplication/images/mult_v100_0202_0112_001_300.1675735299.jpg" alt="Multiplying (1 to 12) by 2 (100 Questions)" loading="lazy" width="250" height="324"><figcaption>Multiplying (1 to 12) by 2 (100 Questions) (<strong>3277 views this week</strong>)</figcaption></figure></a>
<a href="multiplication/multiplication_facts_to_100_no01_001.html" title="Multiplication Facts to 100 (100 Questions) (No Zeros or Ones)"><figure><img src="multiplication/images/multiplication_facts_to_100_no01_001_300.1675735300.jpg" alt="Multiplication Facts to 100 (100 Questions) (No Zeros or Ones)" loading="lazy" width="250" height="324"><figcaption>Multiplication Facts to 100 (100 Questions) (No Zeros or Ones) (<strong>3134 views this week</strong>)</figcaption></figure></a>
</div>
</div>
<div class="adwrap">
<!-- Math-Drills-Topic-2 -->
<ins class="adsbygoogle ad1"
data-ad-client="ca-pub-2856036633404156"
data-ad-slot="3918594659"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multiplication-facts-tables">Multiplication Facts Tables</h2>
</div>
<div class="imagearea">
<img src="multiplication/images/multiplication_facts_tables_01_to_12_gray_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>The multiplication tables with individual questions include a separate box for each number. In each box, the single number is multiplied by every other number with each question on one line. The tables may be used for various purposes such as introducing the multiplication tables, skip counting, as a lookup table, patterning activities, and memorizing.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-1"><label for="multiplication-facts-tables-1" class="wtitle">Multiplication Facts Tables from 1 to 12</label>
<div class="desc">
<a href="multiplication/multiplication_facts_tables_01_to_12_gray.html" class="">Multiplication Facts Tables in <strong>Gray 1 to 12</strong></a>
<a href="multiplication/multiplication_facts_tables_01_to_12_no_answers_gray.html" class="">Multiplication Facts Tables in <strong>Gray 1 to 12</strong> (Answers Omitted)</a>
<a href="multiplication/multiplication_facts_tables_01_to_12_color.html" class="">Multiplication Facts Tables in <strong>Color 1 to 12</strong></a>
<a href="multiplication/multiplication_facts_tables_01_to_12_no_answers_color.html" class="">Multiplication Facts Tables in <strong>Color 1 to 12</strong> (Answers Omitted)</a>
<a href="multiplication/multiplication_facts_tables_01_to_12_montessori.html" class="">Multiplication Facts Tables in <strong>Montessori Colors 1 to 12</strong></a>
<a href="multiplication/multiplication_facts_tables_01_to_12_no_answers_montessori.html" class="">Multiplication Facts Tables in <strong>Montessori Colors 1 to 12</strong> (Answers Omitted)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-2"><label for="multiplication-facts-tables-2" class="wtitle">Multiplication Facts Tables from 0 to 11</label>
<div class="desc">
<a href="multiplication/multiplication_facts_tables_00_to_11_gray.html" class="">Multiplication Facts Tables in <strong>Gray 0 to 11</strong></a>
<a href="multiplication/multiplication_facts_tables_00_to_11_no_answers_gray.html" class="">Multiplication Facts Tables in <strong>Gray 0 to 11</strong> (Answers Omitted)</a>
<a href="multiplication/multiplication_facts_tables_00_to_11_color.html" class="">Multiplication Facts Tables in <strong>Color 0 to 11</strong></a>
<a href="multiplication/multiplication_facts_tables_00_to_11_no_answers_color.html" class="">Multiplication Facts Tables in <strong>Color 0 to 11</strong> (Answers Omitted)</a>
<a href="multiplication/multiplication_facts_tables_00_to_11_montessori.html" class="">Multiplication Facts Tables in <strong>Montessori Colors 0 to 11</strong></a>
<a href="multiplication/multiplication_facts_tables_00_to_11_no_answers_montessori.html" class="">Multiplication Facts Tables in <strong>Montessori Colors 0 to 11</strong> (Answers Omitted)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-3"><label for="multiplication-facts-tables-3" class="wtitle">Multiplication Facts Tables from 13 to 24</label>
<div class="desc">
<a href="multiplication/multiplication_facts_tables_13_to_24_gray.html" class="">Multiplication Facts Tables in <strong>Gray 13 to 24</strong></a>
<a href="multiplication/multiplication_facts_tables_13_to_24_no_answers_gray.html" class="">Multiplication Facts Tables in <strong>Gray 13 to 24</strong> (Answers Omitted)</a>
<a href="multiplication/multiplication_facts_tables_13_to_24_color.html" class="">Multiplication Facts Tables in <strong>Color 13 to 24</strong></a>
<a href="multiplication/multiplication_facts_tables_13_to_24_no_answers_color.html" class="">Multiplication Facts Tables in <strong>Color 13 to 24</strong> (Answers Omitted)</a>
</div>
</li>
<li><p>The compact multiplication tables are basically lookup charts. To look up a multiplication fact, find the first factor in the column header and the second factor in the row headers; then use straight edges, your fingers or your eyes to find where the column and row intersect to get the product. These tables are better than the previous tables for finding patterns, but they can be used in similar ways. Each PDF includes a filled out table page and a blank table page. The blank tables can be used for practice or assessment. You might also make a game out of it, such as "Pin the Fact on the Table" (a play on Pin the Tail on the Donkey). Students are given a product (answer) and they pin it on an enlarged version or the table (photocopier enlargement, interactive whiteboard, overhead projector, etc.). Paper-saving versions with multiple tables per page are included. The left-handed versions of the multiplication tables recognize that students who use their left hands might block the row headings on the right-handed versions.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-4"><label for="multiplication-facts-tables-4" class="wtitle">Compact Multiplication Facts Tables from 1 to 7</label>
<div class="desc">
<a href="multiplication/multiplication_table_001.html" class="">Multiplication Table <strong>to 49</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_001.html" class="">Multiplication Table <strong>to 49</strong> (9 Filled and 9 Blank)</a>
<a href="multiplication/multiplication_table_left_001.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 49</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_left_001.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 49</strong> (9 Filled and 9 Blank)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-5"><label for="multiplication-facts-tables-5" class="wtitle">Compact Multiplication Facts Tables from 1 to 9</label>
<div class="desc">
<a href="multiplication/multiplication_table_002.html" class="">Multiplication Table <strong>to 81</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_002.html" class="">Multiplication Table <strong>to 81</strong> (6 Filled and 6 Blank)</a>
<a href="multiplication/multiplication_table_left_002.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 81</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_left_002.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 81</strong> (6 Filled and 6 Blank)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-6"><label for="multiplication-facts-tables-6" class="wtitle">Compact Multiplication Facts Tables from 1 to 10</label>
<div class="desc">
<a href="multiplication/multiplication_table_003.html" class="">Multiplication Table <strong>to 100</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_003.html" class="">Multiplication Table <strong>to 100</strong> (6 Filled and 6 Blank)</a>
<a href="multiplication/multiplication_table_left_003.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 100</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_left_003.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 100</strong> (6 Filled and 6 Blank)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-tables-7"><label for="multiplication-facts-tables-7" class="wtitle">Compact Multiplication Facts Tables from 1 to 12</label>
<div class="desc">
<a href="multiplication/multiplication_table_004.html" class="">Multiplication Table <strong>to 144</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_004.html" class="">Multiplication Table <strong>to 144</strong> (4 Filled and 4 Blank)</a>
<a href="multiplication/multiplication_table_left_004.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 144</strong> (1 Filled and 1 Blank)</a>
<a href="multiplication/multiplication_table_multi_left_004.html" class=""><strong>Left-Handed</strong> Multiplication Table <strong>to 144</strong> (4 Filled and 4 Blank)</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="five-minute-multiplication-frenzies">Five Minute Multiplication Frenzies</h2>
</div>
<div class="imagearea">
<img src="multiplication/images/multiplication_five_minute_frenzy_right1_0009_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Five minute frenzy charts are 10 by 10 grids that are used for multiplication fact practice (up to 12 x 12) and improving recall speed. They are very much like compact multiplication tables, but all the numbers are mixed up, so students are unable to use skip counting to fill them out. In each square, students write the product of the column number and the row number. They try to complete the chart in a set time with an accuracy goal (such as less than five minutes and score 98 percent or better).</p></li>
<li><p>It is important to note here that you should NOT have students complete five minute frenzies if they don't already know all of the multiplication facts that appear on them. If you want them to participate with the rest of the class, cross off the rows and columns that they don't know and have them complete a modified version. Remember, these charts are for practice and improving recall, not a teaching tool by itself.</p></li>
<li><p>Students who write with their left hands may cover the row headings on the right-handed versions, so the left-handed versions have the row headings on the other side.</p></li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-multiplication-frenzies-8"><label for="five-minute-multiplication-frenzies-8" class="wtitle">Multiplication Frenzies from 0 to 9</label>
<div class="desc">
<a href="multiplication/multiplication_five_minute_frenzy_right1_0009_001.html" class="">Multiplication Frenzy with Factors from <strong>0 to 9</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_right4_0009_001.html" class="">Multiplication Frenzy with Factors from <strong>0 to 9</strong> (<strong>4 Charts</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left1_0009_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>0 to 9</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left4_0009_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>0 to 9</strong> (<strong>4 Charts</strong> Per Page)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-multiplication-frenzies-9"><label for="five-minute-multiplication-frenzies-9" class="wtitle">Multiplication Frenzies from 1 to 10</label>
<div class="desc">
<a href="multiplication/multiplication_five_minute_frenzy_right1_0110_001.html" class="">Multiplication Frenzy with Factors from <strong>1 to 10</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_right4_0110_001.html" class="">Multiplication Frenzy with Factors from <strong>1 to 10</strong> (<strong>4 Charts</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left1_0110_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>1 to 10</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left4_0110_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>1 to 10</strong> (<strong>4 Charts</strong> Per Page)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-multiplication-frenzies-10"><label for="five-minute-multiplication-frenzies-10" class="wtitle">Multiplication Frenzies from 2 to 12</label>
<div class="desc">
<a href="multiplication/multiplication_five_minute_frenzy_right1_0212_001.html" class="">Multiplication Frenzy with Factors from <strong>2 to 12</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_right4_0212_001.html" class="">Multiplication Frenzy with Factors from <strong>2 to 12</strong> (<strong>4 Charts</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left1_0212_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>2 to 12</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left4_0212_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>2 to 12</strong> (<strong>4 Charts</strong> Per Page)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-multiplication-frenzies-11"><label for="five-minute-multiplication-frenzies-11" class="wtitle">Multiplication Frenzies from 5 to 15</label>
<div class="desc">
<a href="multiplication/multiplication_five_minute_frenzy_right1_0515_001.html" class="">Multiplication Frenzy with Factors from <strong>5 to 15</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_right4_0515_001.html" class="">Multiplication Frenzy with Factors from <strong>5 to 15</strong> (<strong>4 Charts</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left1_0515_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>5 to 15</strong> (<strong>1 Chart</strong> Per Page)</a>
<a href="multiplication/multiplication_five_minute_frenzy_left4_0515_001.html" class="">Left-Handed Multiplication Frenzy with Factors from <strong>5 to 15</strong> (<strong>4 Charts</strong> Per Page)</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multiplication-facts-to-7-times-table">Multiplication Facts up to the 7 Times Table</h2>
</div>
<div class="imagearea">
<img src="multiplication/images/multiplication_facts_49_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>This section includes math worksheets for practicing multiplication facts to from 0 to 49. There are two worksheets in this section that include all of the possible questions exactly once on each page: the 49 question worksheet with no zeros and the 64 question worksheet with zeros. All others either contain all the possible questions plus some repeats or a unique subset of the possible questions.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-12"><label for="multiplication-facts-to-7-times-table-12" class="wtitle">Multiplication Facts up to the 7 Times Table (No Zeros)</label>
<div class="desc">
<a href="multiplication/multiplication_vertical_100_0107_0107_001.html" class="">Multiplication Facts to 49 (<strong>100</strong> Questions) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0107_0107_001.html" class="">Multiplication Facts to 49 (<strong>50 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_001.html" class="">Multiplication Facts to 49 (<strong>49</strong> Questions) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_025_0107_0107_001.html" class="">Multiplication Facts to 49 (<strong>25 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-13"><label for="multiplication-facts-to-7-times-table-13" class="wtitle">Multiplication Facts up to the 7 Times Table (With Zeros)</label>
<div class="desc">
<a href="multiplication/multiplication_vertical_100_0007_0007_001.html" class="">Multiplication Facts to 49 (<strong>100</strong> Questions) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_001.html" class="">Multiplication Facts to 49 (<strong>64</strong> Questions) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0007_0007_001.html" class="">Multiplication Facts to 49 (<strong>50 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_025_0007_0007_001.html" class="">Multiplication Facts to 49 (<strong>25 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-14"><label for="multiplication-facts-to-7-times-table-14" class="wtitle">Horizontally Arranged Multiplication Facts up to the 5 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0105_0105_0_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 25</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0105_0105_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 25</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25_0105_0105_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 25</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-15"><label for="multiplication-facts-to-7-times-table-15" class="wtitle">Horizontally Arranged Multiplication Facts up to the 6 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0106_0106_0_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 36</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0106_0106_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 36</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25_0106_0106_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 36</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-16"><label for="multiplication-facts-to-7-times-table-16" class="wtitle">Horizontally Arranged Multiplication Facts up to the 7 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0107_0107_0_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 49</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0107_0107_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 49</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25_0107_0107_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 49</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>When a student first learns multiplication facts, try not to overwhelm them with the entire multiplication table. The following worksheets include one row of the facts in order with the target digit on the bottom and one row with the target digit on the top. The remaining rows include each of the facts once, but the target digit is randomly placed on the top or the bottom and the facts are randomly mixed on each row.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-17"><label for="multiplication-facts-to-7-times-table-17" class="wtitle">Multiplying (1 to 7) by Individual Facts</label>
<div class="desc">
<a href="multiplication/multiplication_facts_49_target_1_001.html" class="">Multiplying (1 to 7) by 1 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_target_2_001.html" class="">Multiplying (1 to 7) by 2 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_target_3_001.html" class="">Multiplying (1 to 7) by 3 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_target_4_001.html" class="">Multiplying (1 to 7) by 4 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_target_5_001.html" class="">Multiplying (1 to 7) by 5 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_target_6_001.html" class="">Multiplying (1 to 7) by 6 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_target_7_001.html" class="">Multiplying (1 to 7) by 7 <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-18"><label for="multiplication-facts-to-7-times-table-18" class="wtitle">Multiplying (0 to 7) by Individual Facts</label>
<div class="desc">
<a href="multiplication/multiplication_facts_49_zeros_target_0_001.html" class="">Multiplying (0 to 7) by 0 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_1_001.html" class="">Multiplying (0 to 7) by 1 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_2_001.html" class="">Multiplying (0 to 7) by 2 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_3_001.html" class="">Multiplying (0 to 7) by 3 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_4_001.html" class="">Multiplying (0 to 7) by 4 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_5_001.html" class="">Multiplying (0 to 7) by 5 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_6_001.html" class="">Multiplying (0 to 7) by 6 <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_49_zeros_target_7_001.html" class="">Multiplying (0 to 7) by 7 <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-19"><label for="multiplication-facts-to-7-times-table-19" class="wtitle">Horizontally Arranged Multiplying (1 to 7) by Individual Facts (100 Questions per page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts_0101_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 1</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0202_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 2</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0303_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 3</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0404_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 4</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0505_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 5</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0606_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 6</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0707_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 7</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-20"><label for="multiplication-facts-to-7-times-table-20" class="wtitle">Horizontally Arranged Multiplying (1 to 7) by Individual Facts (50 Questions per page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts50_0101_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 1</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0202_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 2</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0303_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 3</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0404_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 4</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0505_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 5</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0606_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 6</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0707_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 7</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-21"><label for="multiplication-facts-to-7-times-table-21" class="wtitle">Horizontally Arranged Multiplying (1 to 7) by Individual Facts (25 Questions per page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts25lp_0101_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 1</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0202_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 2</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0303_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 3</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0404_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 4</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0505_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 5</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0606_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 6</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0707_0107_001.html" class="">Horizontally Arranged Multiplying (1 to 7) <strong> by 7</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-7-times-table-22"><label for="multiplication-facts-to-7-times-table-22" class="wtitle">Multiplying Doubles</label>
<div class="desc">
<a href="multiplication/multiplying_doubles_upto07_001.html" class="">Multiplying Doubles up to 7 x 7</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multiplication-facts-to-9-times-table">Multiplication Facts up to the 9 Times Table</h2>
</div>
<div class="imagearea">
<img src="multiplication/images/multiplication_facts_to_81_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>This section includes math worksheets for practicing multiplication facts from 0 to 81. There are three worksheets (marked with *) in this section that include all of the possible questions in the specified range exactly once on each page: the 64 question worksheet with no zeros or ones, the 81 question worksheet with no zeros, and the 100 question worksheet with zeros. All others either contain all the possible questions plus some repeats or a unique subset of the possible questions.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-23"><label for="multiplication-facts-to-9-times-table-23" class="wtitle">Multiplication Facts up to the 9 Times Table (No Zeros or Ones)</label>
<div class="desc">
<a href="multiplication/100_multiplication_facts_to_81_two_to_nine_001.html" class="">Multiplication Facts to 81 (<strong>100</strong> Questions) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_081_0209_0209_001.html" class="">Multiplication Facts to 81 (<strong>81</strong> Questions) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_064_0209_0209_001.html" class="">*Multiplication Facts to 81 (<strong>64</strong> Questions) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0209_0209_001.html" class="">Multiplication Facts to 81 (<strong>50 Questions</strong>) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_025_0209_0209_001.html" class="">Multiplication Facts to 81 (<strong>25 Questions</strong>) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-24"><label for="multiplication-facts-to-9-times-table-24" class="wtitle">Multiplication Facts up to the 9 Times Table (No Zeros)</label>
<div class="desc">
<a href="multiplication/100_multiplication_facts_to_81_001.html" class="">Multiplication Facts to 81 (<strong>100</strong> Questions) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_001.html" class="">*Multiplication Facts to 81 (<strong>81</strong> Questions) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0109_0109_001.html" class="">Multiplication Facts to 81 (<strong>50 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_lp_001.html" class="">Multiplication Facts to 81 (<strong>25 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-25"><label for="multiplication-facts-to-9-times-table-25" class="wtitle">Multiplication Facts up to the 9 Times Table (With Zeros)</label>
<div class="desc">
<a href="multiplication/100_multiplication_facts_to_81_zeros_001.html" class="">*Multiplication Facts to 81 (<strong>100</strong> Questions) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_zeros_001.html" class="">Multiplication Facts to 81 (<strong>81</strong> Questions) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0009_0009_001.html" class="">Multiplication Facts to 81 (<strong>50 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_zeros_lp_001.html" class="">Multiplication Facts to 81 (<strong>25 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-26"><label for="multiplication-facts-to-9-times-table-26" class="wtitle">Horizontally Arranged Multiplication Facts up to the 8 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0108_0108_0_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 64</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0108_0108_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 64</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25_0108_0108_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 64</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-27"><label for="multiplication-facts-to-9-times-table-27" class="wtitle">Horizontally Arranged Multiplication Facts up to the 9 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0109_0109_0_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 81</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0109_0109_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 81</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25_0109_0109_001.html" class="">Horizontally Arranged Multiplication Facts with <strong>Products to 81</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>When learning multiplication facts, it is useful to have each fact isolated on a set of practice questions to help reinforce the individual fact. The following worksheets isolate each fact. These worksheets can be used as practice sheets, assessment sheets, or in conjunction with another teaching strategy such as manipulative use.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-28"><label for="multiplication-facts-to-9-times-table-28" class="wtitle">Multiplying (1 to 9) by Individual Facts (81 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_81_target00_001.html" class="">Multiplying (1 to 9) <strong>by 0</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target01_001.html" class="">Multiplying (1 to 9) <strong>by 1</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target02_001.html" class="">Multiplying (1 to 9) <strong>by 2</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target03_001.html" class="">Multiplying (1 to 9) <strong>by 3</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target04_001.html" class="">Multiplying (1 to 9) <strong>by 4</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target05_001.html" class="">Multiplying (1 to 9) <strong>by 5</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target06_001.html" class="">Multiplying (1 to 9) <strong>by 6</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target07_001.html" class="">Multiplying (1 to 9) <strong>by 7</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target08_001.html" class="">Multiplying (1 to 9) <strong>by 8</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target09_001.html" class="">Multiplying (1 to 9) <strong>by 9</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target34_001.html" class="">Multiplying (1 to 9) <strong>by (3 and 4)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target45_001.html" class="">Multiplying (1 to 9) <strong>by (4 and 5)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target56_001.html" class="">Multiplying (1 to 9) <strong>by (5 and 6)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target67_001.html" class="">Multiplying (1 to 9) <strong>by (6 and 7)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target78_001.html" class="">Multiplying (1 to 9) <strong>by (7 and 8)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target89_001.html" class="">Multiplying (1 to 9) <strong>by (8 and 9)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target68_001.html" class="">Multiplying (1 to 9) <strong>by (6 to 8)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target79_001.html" class="">Multiplying (1 to 9) <strong>by (7 to 9)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target69_001.html" class="">Multiplying (1 to 9) <strong>by (6 to 9)</strong> (<strong>81</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-29"><label for="multiplication-facts-to-9-times-table-29" class="wtitle">Multiplying (2 to 9) by Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/mult_v100_0608_0209_001.html" class="">Multiplying <strong>(2 to 9) by (6 to 8)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0709_0209_001.html" class="">Multiplying <strong>(2 to 9) by (7 to 9)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-30"><label for="multiplication-facts-to-9-times-table-30" class="wtitle">Multiplying (1 to 9) by Individual Facts (36 Questions per Page; Large Print)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_81_target00_lp_001.html" class="">Multiplying (1 to 9) <strong>by 0</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target01_lp_001.html" class="">Multiplying (1 to 9) <strong>by 1</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target02_lp_001.html" class="">Multiplying (1 to 9) <strong>by 2</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target03_lp_001.html" class="">Multiplying (1 to 9) <strong>by 3</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target04_lp_001.html" class="">Multiplying (1 to 9) <strong>by 4</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target05_lp_001.html" class="">Multiplying (1 to 9) <strong>by 5</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target06_lp_001.html" class="">Multiplying (1 to 9) <strong>by 6</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target07_lp_001.html" class="">Multiplying (1 to 9) <strong>by 7</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target08_lp_001.html" class="">Multiplying (1 to 9) <strong>by 8</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target09_lp_001.html" class="">Multiplying (1 to 9) <strong>by 9</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target67_lp_001.html" class="">Multiplying (1 to 9) <strong>by (6 and 7)</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target78_lp_001.html" class="">Multiplying (1 to 9) <strong>by (7 and 8)</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target89_lp_001.html" class="">Multiplying (1 to 9) <strong>by (8 and 9)</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target68_lp_001.html" class="">Multiplying (1 to 9) <strong>by (6 to 8)</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target79_lp_001.html" class="">Multiplying (1 to 9) <strong>by (7 to 9)</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_81_target69_lp_001.html" class="">Multiplying (1 to 9) <strong>by (6 to 9)</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-31"><label for="multiplication-facts-to-9-times-table-31" class="wtitle">Horizontally Arranged Multiplying (0 to 9) by Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts100_0009_0000_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 0</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0101_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 1</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0202_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 2</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0303_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 3</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0404_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 4</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0505_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 5</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0606_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 6</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0707_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 7</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0808_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 8</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts100_0009_0909_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 9</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-32"><label for="multiplication-facts-to-9-times-table-32" class="wtitle">Horizontally Arranged Multiplying (0 to 9) by Individual Facts (50 Questions per Page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts50_0009_0000_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 0</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0101_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 1</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0202_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 2</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0303_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 3</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0404_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 4</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0505_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 5</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0606_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 6</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0707_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 7</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0808_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 8</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0009_0909_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 9</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-33"><label for="multiplication-facts-to-9-times-table-33" class="wtitle">Horizontally Arranged Multiplying (0 to 9) by Individual Facts (25 Questions per Page; Large Print)</label>
<div class="desc">
<a href="multiplication/mult00h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 0</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult01h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 1</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult02h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 2</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult03h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 3</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult04h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 4</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult05h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 5</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult06h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 6</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult07h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 7</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult08h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 8</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/mult09h36_001.html" class="">Horizontally Arranged Multiplying (<strong>0 to 9</strong>) <strong>by 9</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-34"><label for="multiplication-facts-to-9-times-table-34" class="wtitle">Multiplying Doubles</label>
<div class="desc">
<a href="multiplication/multiplying_doubles_upto09_001.html" class="">Multiplying Doubles up to 9 x 9</a>
</div>
</li>
<li><p>Some students are a little more motivated when learning is turned into a game. Multiplication bingo encourages students to recall multiplication facts in an environment of competition.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-9-times-table-35"><label for="multiplication-facts-to-9-times-table-35" class="wtitle">Multiplication Bingo Game</label>
<div class="desc">
<a href="multiplication/multiplication_bingo_facts_1to9_001.html" class="">Multiplication Bingo Cards for <strong>Facts 1 to 9</strong></a>
<a href="multiplication/multiplication_bingo_facts_1to9_teacher_001.html" class="">Multiplication Bingo <strong>Facts 1 to 9</strong> Teacher Call Cards</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multiplication-facts-to-10-times-table">Multiplication Facts up to the 10 Times Table</h2>
</div>
<div class="imagearea">
<img src="multiplication/images/multiplication_facts_to_100_no01_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Multiplying by 10 is often a lesson itself, but here we have included it with the other facts. Students usually learn how to multiply by 10 fairly quickly, so this section really is not a whole lot more difficult than the multiplication facts to 81 section.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-36"><label for="multiplication-facts-to-10-times-table-36" class="wtitle">Multiplication Facts up to the 10 Times Table (No Zeros or Ones)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_no01_001.html" class="">Multiplication Facts to 100 (<strong>100</strong> Questions) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_081_0210_0210_001.html" class="">*Multiplication Facts to 100 (<strong>81</strong> Questions) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0210_0210_001.html" class="">Multiplication Facts to 100 (<strong>50 Questions</strong>) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_no01_lp_001.html" class="">Multiplication Facts to 100 (<strong>25 Questions</strong>) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-37"><label for="multiplication-facts-to-10-times-table-37" class="wtitle">Multiplication Facts up to the 10 Times Table (No Zeros)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_001.html" class="">*Multiplication Facts to 100 (<strong>100</strong> Questions) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0110_0110_001.html" class="">Multiplication Facts to 100 (<strong>50 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_lp_001.html" class="">Multiplication Facts to 100 (<strong>25 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-38"><label for="multiplication-facts-to-10-times-table-38" class="wtitle">Multiplication Facts up to the 10 Times Table (With Zeros)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_zeros_001.html" class="">Multiplication Facts to 100 (<strong>100</strong> Questions) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0010_0010_001.html" class="">Multiplication Facts to 100 (<strong>50 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_zeros_lp_001.html" class="">Multiplication Facts to 100 (<strong>25 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-39"><label for="multiplication-facts-to-10-times-table-39" class="wtitle">Horizontally Arranged Multiplication Facts up to the 10 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0110_0110_0_001.html" class="">Horizontally Arranged Multiplication Facts to 10 × 10 = 100 (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0110_0110_001.html" class="">Horizontally Arranged Multiplication Facts to 10 × 10 = 100 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Some students find it easier to focus on one multiplication fact at a time. These multiplication worksheets include some repetition, of course, as there is only one thing to multiply by. Once students practice a few times, these facts will probably get stuck in their heads for life. Some of the later versions include a range of focus numbers. In those cases, each question will randomly have one of the focus numbers in question. For example, if the range is 6 to 8, the question might include a 6, 7 or 8 or more than one depending on which other factor was chosen for the second factor.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-40"><label for="multiplication-facts-to-10-times-table-40" class="wtitle">Multiplying (1 to 10) by Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_target00_001.html" class="">Multiplying (1 to 10) <strong>by 0</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target11_001.html" class="">Multiplying (1 to 10) <strong>by 1</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target22_001.html" class="">Multiplying (1 to 10) <strong>by 2</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target33_001.html" class="">Multiplying (1 to 10) <strong>by 3</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target44_001.html" class="">Multiplying (1 to 10) <strong>by 4</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target55_001.html" class="">Multiplying (1 to 10) <strong>by 5</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target66_001.html" class="">Multiplying (1 to 10) <strong>by 6</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target77_001.html" class="">Multiplying (1 to 10) <strong>by 7</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target88_001.html" class="">Multiplying (1 to 10) <strong>by 8</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target99_001.html" class="">Multiplying (1 to 10) <strong>by 9</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_targetxx_001.html" class="">Multiplying (1 to 10) <strong>by 10</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-41"><label for="multiplication-facts-to-10-times-table-41" class="wtitle">Multiplying (1 to 10) by Ranges Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_target67_001.html" class="">Multiplying (1 to 10) <strong>by (6 and 7)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target78_001.html" class="">Multiplying (1 to 10) <strong>by (7 and 8)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target89_001.html" class="">Multiplying (1 to 10) <strong>by (8 and 9)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target9x_001.html" class="">Multiplying (1 to 10) <strong>by (9 and 10)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target68_001.html" class="">Multiplying (1 to 10) <strong>by (6 to 8)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target79_001.html" class="">Multiplying (1 to 10) <strong>by (7 to 9)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target8x_001.html" class="">Multiplying (1 to 10) <strong>by (8 to 10)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_squares_001.html" class="">Multiplying <strong>Doubles (aka Squares) from (1 to 10)</strong> (<strong>100</strong> Questions)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-42"><label for="multiplication-facts-to-10-times-table-42" class="wtitle">Multiplying (1 to 10) by Individual Facts (50 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_50target00_001.html" class="">Multiplying (1 to 10) <strong>by 0</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target11_001.html" class="">Multiplying (1 to 10) <strong>by 1</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target22_001.html" class="">Multiplying (1 to 10) <strong>by 2</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target33_001.html" class="">Multiplying (1 to 10) <strong>by 3</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target44_001.html" class="">Multiplying (1 to 10) <strong>by 4</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target55_001.html" class="">Multiplying (1 to 10) <strong>by 5</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target66_001.html" class="">Multiplying (1 to 10) <strong>by 6</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target77_001.html" class="">Multiplying (1 to 10) <strong>by 7</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target88_001.html" class="">Multiplying (1 to 10) <strong>by 8</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target99_001.html" class="">Multiplying (1 to 10) <strong>by 9</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50targetxx_001.html" class="">Multiplying (1 to 10) <strong>by 10</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-43"><label for="multiplication-facts-to-10-times-table-43" class="wtitle">Multiplying (1 to 10) by Ranges of Individual Facts (50 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_50target67_001.html" class="">Multiplying (1 to 10) <strong>by (6 and 7)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target78_001.html" class="">Multiplying (1 to 10) <strong>by (7 and 8)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target89_001.html" class="">Multiplying (1 to 10) <strong>by (8 and 9)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target9x_001.html" class="">Multiplying (1 to 10) <strong>by (9 and 10)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target68_001.html" class="">Multiplying (1 to 10) <strong>by (6 to 8)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target79_001.html" class="">Multiplying (1 to 10) <strong>by (7 to 9)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_50target8x_001.html" class="">Multiplying (1 to 10) <strong>by (8 to 10)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-44"><label for="multiplication-facts-to-10-times-table-44" class="wtitle">Multiplying (1 to 10) by Individual Facts (36 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_target00_lp_001.html" class="">Multiplying (1 to 10) <strong>by 0</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target11_lp_001.html" class="">Multiplying (1 to 10) <strong>by 1</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target22_lp_001.html" class="">Multiplying (1 to 10) <strong>by 2</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target33_lp_001.html" class="">Multiplying (1 to 10) <strong>by 3</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target44_lp_001.html" class="">Multiplying (1 to 10) <strong>by 4</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target55_lp_001.html" class="">Multiplying (1 to 10) <strong>by 5</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target66_lp_001.html" class="">Multiplying (1 to 10) <strong>by 6</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target77_lp_001.html" class="">Multiplying (1 to 10) <strong>by 7</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target88_lp_001.html" class="">Multiplying (1 to 10) <strong>by 8</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target99_lp_001.html" class="">Multiplying (1 to 10) <strong>by 9</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_targetxx_lp_001.html" class="">Multiplying (1 to 10) <strong>by 10</strong> (<strong>36</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-45"><label for="multiplication-facts-to-10-times-table-45" class="wtitle">Multiplying (1 to 10) by Ranges of Individual Facts (42 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_100_target67_lp_001.html" class="">Multiplying (1 to 10) <strong>by (6 and 7)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target78_lp_001.html" class="">Multiplying (1 to 10) <strong>by (7 and 8)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target89_lp_001.html" class="">Multiplying (1 to 10) <strong>by (8 and 9)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target9x_lp_001.html" class="">Multiplying (1 to 10) <strong>by (9 and 10)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target68_lp_001.html" class="">Multiplying (1 to 10) <strong>by (6 to 8)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target79_lp_001.html" class="">Multiplying (1 to 10) <strong>by (7 to 9)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_facts_to_100_target8x_lp_001.html" class="">Multiplying (1 to 10) <strong>by (8 to 10)</strong> (<strong>42</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-46"><label for="multiplication-facts-to-10-times-table-46" class="wtitle">Horizontally Arranged Multiplying (1 to 10) by Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts_0101_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 1</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0202_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 2</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0303_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 3</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0404_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 4</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0505_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 5</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0606_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 6</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0707_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 7</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0808_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 8</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_0909_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 9</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts_1010_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 10</strong> (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-47"><label for="multiplication-facts-to-10-times-table-47" class="wtitle">Horizontally Arranged Multiplying (1 to 10) by Individual Facts (50 Questions per Page)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts50_0101_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 1</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0202_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 2</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0303_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 3</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0404_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 4</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0505_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 5</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0606_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 6</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0707_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 7</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0808_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 8</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0909_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 9</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_1010_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 10</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-48"><label for="multiplication-facts-to-10-times-table-48" class="wtitle">Horizontally Arranged Multiplying (1 to 10) by Individual Facts (25 Questions per Page; Large Print)</label>
<div class="desc">
<a href="multiplication/horizontal_multiplication_facts25lp_0101_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 1</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0202_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 2</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0303_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 3</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0404_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 4</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0505_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 5</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0606_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 6</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0707_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 7</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0808_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 8</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_0909_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 9</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts25lp_1010_0110_001.html" class="">Horizontally Arranged Multiplying (1 to 10) <strong> by 10</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>If a student is learning their times tables one at a time, these worksheets will help with practice and assessment along the way. Each one increases the range for the second factor.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-49"><label for="multiplication-facts-to-10-times-table-49" class="wtitle">Multiplying (1 to 10) by Increasing Ranges of Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/mult_v100_0102_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 and 2)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0103_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 3)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0104_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 4)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0105_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 5)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0106_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 6)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0107_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 7)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0108_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 8)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0109_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 9)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-50"><label for="multiplication-facts-to-10-times-table-50" class="wtitle">Multiplying (1 to 10) by Increasing Ranges of Individual Facts (50 Questions per Page)</label>
<div class="desc">
<a href="multiplication/mult_v050_0102_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 and 2)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0103_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 3)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0104_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 4)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0105_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 5)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0106_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 6)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0107_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 7)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0108_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 8)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v050_0109_0110_001.html" class="">Multiplying (1 to 10) by <strong>(1 to 9)</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-10-times-table-51"><label for="multiplication-facts-to-10-times-table-51" class="wtitle">Multiplying Doubles</label>
<div class="desc">
<a href="multiplication/multiplying_doubles_upto10_001.html" class="">Multiplying Doubles up to 10 x 10</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multiplication-facts-to-12-times-table">Multiplication Facts up to the 12 Times Table</h2>
</div>
<div class="imagearea">
<img src="multiplication/images/multiplication_facts_to_144_no01_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>The Holy Grail of elementary mathematics. Once you learn your twelve times table, it is smooth sailing from now on, right? Well, not exactly, but having a good mental recall of the multiplication facts up to 144 will certainly set you on the right path for future success in your math studies.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-52"><label for="multiplication-facts-to-12-times-table-52" class="wtitle">Multiplication Facts up to the 12 Times Table (No Zeros or Ones)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_144_no01_001.html" class="">Multiplication Facts to 144 (<strong>100</strong> Questions) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0212_0212_001.html" class="">Multiplication Facts to 144 (<strong>50 Questions</strong>) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_025_0212_0212_001.html" class="">Multiplication Facts to 144 (<strong>25 Questions</strong>) (<strong>No Zeros or Ones</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-53"><label for="multiplication-facts-to-12-times-table-53" class="wtitle">Multiplication Facts up to the 12 Times Table (No Zeros)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_144_001.html" class="">Multiplication Facts to 144 (<strong>100</strong> Questions) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0112_0112_001.html" class="">Multiplication Facts to 144 (<strong>50 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_025_0112_0112_001.html" class="">Multiplication Facts to 144 (<strong>25 Questions</strong>) (<strong>No Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-54"><label for="multiplication-facts-to-12-times-table-54" class="wtitle">Multiplication Facts up to the 12 Times Table (With Zeros)</label>
<div class="desc">
<a href="multiplication/multiplication_facts_to_144_zeros_001.html" class="">Multiplication Facts to 144 (<strong>100</strong> Questions) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_050_0012_0012_001.html" class="">Multiplication Facts to 144 (<strong>50 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplication_vertical_025_0012_0012_001.html" class="">Multiplication Facts to 144 (<strong>25 Questions</strong>) (<strong>With Zeros</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-55"><label for="multiplication-facts-to-12-times-table-55" class="wtitle">Horizontally Arranged Multiplication Facts up to the 11 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0111_0111_0_001.html" class="">Horizontally Arranged Multiplication Facts to 11 × 11 = 121 (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0111_0111_001.html" class="">Horizontally Arranged Multiplication Facts to 11 × 11 = 121 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-56"><label for="multiplication-facts-to-12-times-table-56" class="wtitle">Horizontally Arranged Multiplication Facts up to the 12 Times Table</label>
<div class="desc">
<a href="multiplication/multiplication_facts_0112_0112_0_001.html" class="">Horizontally Arranged Multiplication Facts to 12 × 12 = 144 (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/horizontal_multiplication_facts50_0112_0112_001.html" class="">Horizontally Arranged Multiplication Facts to 12 × 12 = 144 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>With one, two or three target numbers at a time, students are able to practice just the multiplication facts they need.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-57"><label for="multiplication-facts-to-12-times-table-57" class="wtitle">Multiplying (1 to 12) by Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/mult_v100_0000_0112_001.html" class="">Multiplying (1 to 12) <strong>By 0</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0101_0112_001.html" class="">Multiplying (1 to 12) <strong>By 1</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0202_0112_001.html" class="">Multiplying (1 to 12) <strong>By 2</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0303_0112_001.html" class="">Multiplying (1 to 12) <strong>By 3</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0404_0112_001.html" class="">Multiplying (1 to 12) <strong>By 4</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0505_0112_001.html" class="">Multiplying (1 to 12) <strong>By 5</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0606_0112_001.html" class="">Multiplying (1 to 12) <strong>By 6</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0707_0112_001.html" class="">Multiplying (1 to 12) <strong>By 7</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0808_0112_001.html" class="">Multiplying (1 to 12) <strong>By 8</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0909_0112_001.html" class="">Multiplying (1 to 12) <strong>By 9</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_1010_0112_001.html" class="">Multiplying (1 to 12) <strong>By 10</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_1111_0112_001.html" class="">Multiplying (1 to 12) <strong>By 11</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_1212_0112_001.html" class="">Multiplying (1 to 12) <strong>By 12</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-58"><label for="multiplication-facts-to-12-times-table-58" class="wtitle">Multiplying (1 to 12) by RAnges of Individual Facts (100 Questions per Page)</label>
<div class="desc">
<a href="multiplication/mult_v100_0001_0112_001.html" class="">Multiplying (1 to 12) <strong>By (0 and 1)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0607_0112_001.html" class="">Multiplying (1 to 12) <strong>By (6 and 7)</strong> (<strong>100</strong> Questions)</a>
<a href="multiplication/mult_v100_0708_0112_001.html" class="">Multiplying (1 to 12) <strong>By (7 and 8)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0809_0112_001.html" class="">Multiplying (1 to 12) <strong>By (8 and 9)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0910_0112_001.html" class="">Multiplying (1 to 12) <strong>By (9 and 10)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_1011_0112_001.html" class="">Multiplying (1 to 12) <strong>By (10 and 11)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_1112_0112_001.html" class="">Multiplying (1 to 12) <strong>By (11 and 12)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0608_0112_001.html" class="">Multiplying (1 to 12) <strong>By (6, 7 and 8)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0709_0112_001.html" class="">Multiplying (1 to 12) <strong>By (7, 8 and 9)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0810_0112_001.html" class="">Multiplying (1 to 12) <strong>By (8, 9 and 10)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_0911_0112_001.html" class="">Multiplying (1 to 12) <strong>By (9, 10 and 11)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="multiplication/mult_v100_1012_0112_001.html" class="">Multiplying (1 to 12) <strong>By (10, 11 and 12)</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multiplication-facts-to-12-times-table-59"><label for="multiplication-facts-to-12-times-table-59" class="wtitle">Multiplying (1 to 12) by Individual Facts (50 Questions per Page)</label>
<div class="desc">
<a href="multiplication/multiplying_target_0112_by_0000_v050_001.html" class="">Multiplying (1 to 12) <strong>By 0</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplying_target_0112_by_0101_v050_001.html" class="">Multiplying (1 to 12) <strong>By 1</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplying_target_0112_by_0202_v050_001.html" class="">Multiplying (1 to 12) <strong>By 2</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplying_target_0112_by_0303_v050_001.html" class="">Multiplying (1 to 12) <strong>By 3</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplying_target_0112_by_0404_v050_001.html" class="">Multiplying (1 to 12) <strong>By 4</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="multiplication/multiplying_target_0112_by_0505_v050_001.html" class="">Multiplying (1 to 12) <strong>By 5</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>