-
Notifications
You must be signed in to change notification settings - Fork 17
/
division.html
1097 lines (1062 loc) · 128 KB
/
division.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/division.php by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 30 Aug 2024 17:48: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>Division Worksheets</title>
<meta name="description" content="Division worksheets including division facts and long division with and without remainders.">
<meta name="keywords" content="division, worksheets, quotient, divisor, dividend, remainder, long, short">
<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="division.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">Division 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 Division Worksheets this Week</a></div>
<div class="h2"><a href="#division-facts-tables">Division Facts Tables</a></div>
<div class="h2"><a href="#division-facts-to-7-times-table">Division Facts up to the 7 Times Table</a></div>
<div class="h2"><a href="#division-facts-to-9-times-table">Division Facts up to the 9 Times Table</a></div>
<div class="h2"><a href="#division-facts-to-10-times-table">Division Facts up to the 10 Times Table</a></div>
<div class="h2"><a href="#division-facts-to-12-times-table">Division Facts up to the 12 Times Table</a></div>
<div class="h2"><a href="#division-facts-beyond-12-times-table">Division Facts beyond the 12 Times Table</a></div>
<div class="h2"><a href="#long-division-worksheets">Long division Worksheets</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 division worksheets page at Math-Drills.com! Please give us your undivided attention while we introduce this page. Our worksheets for division help you to teach students the very important concept of division. If students have a good recall of multiplication facts, the division facts should be a breeze to teach. If you want your students to experience success in learning division, please make sure they know their multiplication facts to 81, how to multiply by 0 and how to multiply by 10. If they don't know these things, learning division will take a lot longer.</p>
<p>On this page you will find many <span itemprop="description">Division Worksheets including division facts and long division with and without remainders.</span> We start off with some division facts which are just the multiplication facts expressed in a different way. The main difference is that you can't divide by 0 and get a real number. If you really want your students to impress, say at their dinner table when their parents ask them what they learned today, you can teach them that division by zero is undefined.</p>
<p>The rest of the page is devoted to long division which for some reason is disliked among some members of the population. Long division is most difficult when students don't know their multiplication facts, so make sure they know them first! Oh, we already said that. What about a long division algorithm... maybe the one you or your parents or your grandparents learned? We adamantly say, yes! The reason that you and your ancestors used it is because it is an efficient and beautiful algorithm that will allow you to solve some of the most difficult division problems that even base ten blocks couldn't touch. It works equally well for decimals and whole numbers. Long division really isn't that hard.</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 Division Worksheets this Week</h2>
<div class="searchresults">
<a href="division/division_long_1dd3dq_nr_001.html" title="Long Division - One-Digit Divisor and a Three-Digit Quotient with No Remainder"><figure><img src="division/images/division_long_1dd3dq_nr_001_300.1675735248.jpg" alt="Long Division - One-Digit Divisor and a Three-Digit Quotient with No Remainder" loading="lazy" width="250" height="324"><figcaption>Long Division - One-Digit Divisor and a Three-Digit Quotient with No Remainder (<strong>1904 views this week</strong>)</figcaption></figure></a>
<a href="division/division_long_steps_2dd3dd_r_001.html" title="3-Digit by 2-Digit Long Division with Remainders and Steps Shown on Answer Key"><figure><img src="division/images/division_long_steps_2dd3dd_r_001_300.1496071734.jpg" alt="3-Digit by 2-Digit Long Division with Remainders and Steps Shown on Answer Key" loading="lazy" width="250" height="324"><figcaption>3-Digit by 2-Digit Long Division with Remainders and Steps Shown on Answer Key (<strong>1494 views this week</strong>)</figcaption></figure></a>
<a href="division/division_long_steps_2dd4dd_r_001.html" title="4-Digit by 2-Digit Long Division with Remainders and Steps Shown on Answer Key"><figure><img src="division/images/division_long_steps_2dd4dd_r_001_300.1675735249.jpg" alt="4-Digit by 2-Digit Long Division with Remainders and Steps Shown on Answer Key" loading="lazy" width="250" height="324"><figcaption>4-Digit by 2-Digit Long Division with Remainders and Steps Shown on Answer Key (<strong>1310 views this week</strong>)</figcaption></figure></a>
<a href="division/division_facts_346_0112_001.html" title="Division Facts by a Fixed Divisor (3, 4 and 6) and Quotients from 1 to 12 with Long Division Symbol/Bracket (50 questions)"><figure><img src="division/images/division_facts_346_0112_001_300.1687557490.jpg" alt="Division Facts by a Fixed Divisor (3, 4 and 6) and Quotients from 1 to 12 with Long Division Symbol/Bracket (50 questions)" loading="lazy" width="250" height="324"><figcaption>Division Facts by a Fixed Divisor (3, 4 and 6) and Quotients from 1 to 12 with Long Division Symbol/Bracket (50 questions) (<strong>1236 views this week</strong>)</figcaption></figure></a>
<a href="division/division_long_1dd2dq_nr_001.html" title="Long Division - One-Digit Divisor and a Two-Digit Quotient with No Remainder"><figure><img src="division/images/division_long_1dd2dq_nr_001_300.1360945853.jpg" alt="Long Division - One-Digit Divisor and a Two-Digit Quotient with No Remainder" loading="lazy" width="250" height="324"><figcaption>Long Division - One-Digit Divisor and a Two-Digit Quotient with No Remainder (<strong>1114 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="division-facts-tables">Division Facts Tables</h2>
</div>
<div class="imagearea">
<img src="division/images/division_facts_tables_01_to_12_color_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Like their counterparts on the multiplication facts page, these division facts tables can be used in a variety of ways to help students learn division facts. Students can memorize, look for patterns in the tables, compare them to multiplication tables, write answers on the versions with the answers omitted, or a variety of other learning activities. The tables come in gray, color and Montessori color depending on what fits you and your printer or school the best. For those that have already mastered the facts up to 12, they might be challenged to try the 13 to 24 versions.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-tables-1"><label for="division-facts-tables-1" class="wtitle">Division Facts Tables for Facts from 1 to 12</label>
<div class="desc">
<a href="division/division_facts_tables_01_to_12_gray.html" class="">Division Facts Tables in <strong>Gray 1 to 12</strong></a>
<a href="division/division_facts_tables_01_to_12_no_answers_gray.html" class="">Division Facts Tables in <strong>Gray 1 to 12</strong> (Answers Omitted)</a>
<a href="division/division_facts_tables_01_to_12_color.html" class="">Division Facts Tables in <strong>Color 1 to 12</strong></a>
<a href="division/division_facts_tables_01_to_12_no_answers_color.html" class="">Division Facts Tables in <strong>Color 1 to 12</strong> (Answers Omitted)</a>
<a href="division/division_tables_003.html" class="">Division Facts Tables in <strong>Color 1 to 12</strong> with Individual Facts Highlighted</a>
<a href="division/division_facts_tables_01_to_12_montessori.html" class="">Division Facts Tables in <strong>Montessori Colors 1 to 12</strong></a>
<a href="division/division_facts_tables_01_to_12_no_answers_montessori.html" class="">Division Facts Tables in <strong>Montessori Colors 1 to 12</strong> (Answers Omitted)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-tables-2"><label for="division-facts-tables-2" class="wtitle">Division Facts Tables for Facts from 13 to 24</label>
<div class="desc">
<a href="division/division_facts_tables_13_to_24_gray.html" class="">Division Facts Tables in <strong>Gray 13 to 24</strong></a>
<a href="division/division_facts_tables_13_to_24_no_answers_gray.html" class="">Division Facts Tables in <strong>Gray 13 to 24</strong> (Answers Omitted)</a>
<a href="division/division_facts_tables_13_to_24_color.html" class="">Division Facts Tables in <strong>Color 13 to 24</strong></a>
<a href="division/division_facts_tables_13_to_24_no_answers_color.html" class="">Division Facts Tables in <strong>Color 13 to 24</strong> (Answers Omitted)</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="division-facts-to-7-times-table">Division Facts up to the 7 Times Table</h2>
</div>
<div class="imagearea">
<img src="division/images/division_facts_vertical_long_0107_0107_50_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>If your students aren't quite ready for all of the division facts at once, this might be a good place to start. Perhaps they are really good at the multiplying up to 5; there is a worksheet to help them practice, and when they are ready, they can include 6 then 7. This section includes vertical questions with the traditional division symbol (aka bracket) and some arranged with a division symbol like you might see addition, subtraction or multiplication arranged.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-3"><label for="division-facts-to-7-times-table-3" class="wtitle">Division Facts up to the 7 Times Table with a Long Division Symbol</label>
<div class="desc">
<a href="division/division_facts_vertical_long_0105_0105_50_001.html" class="">Vertical Division Facts <strong>Up To The 5 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0106_0106_50_001.html" class="">Vertical Division Facts <strong>Up To The 6 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0107_0107_50_001.html" class="">Vertical Division Facts <strong>Up To The 7 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-4"><label for="division-facts-to-7-times-table-4" class="wtitle">Division Facts up to the 7 Times Table with a Division Sign</label>
<div class="desc">
<a href="division/division_facts_vertical_0105_0105_001.html" class="">Vertical Division Facts <strong>Dividends to 25</strong> With Division Sign</a>
<a href="division/division_facts_vertical_0106_0106_001.html" class="">Vertical Division Facts <strong>Dividends to 36</strong> With Division Sign</a>
<a href="division/division_facts_vertical_0107_0107_001.html" class="">Vertical Division Facts <strong>Dividends to 49</strong> With Division Sign</a>
</div>
</li>
<li><p>More worksheets with division facts up to 7, but these ones are arranged horizontally. This is a more natural arrangement for students who are used to reading things from left to right, allows them to practice recalling the answers and it is possible to fit 100 of these questions on the page without it getting too cluttered. If clutter is a problem though, there are also 50 and 25 question options.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-5"><label for="division-facts-to-7-times-table-5" class="wtitle">Horizontally Arranged Division Facts up to the 5 Times Table</label>
<div class="desc">
<a href="division/division_facts_0105_0105_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 25</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0105_0105_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 25</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0105_0105_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 25</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-6"><label for="division-facts-to-7-times-table-6" class="wtitle">Horizontally Arranged Division Facts up to the 6 Times Table</label>
<div class="desc">
<a href="division/division_facts_0106_0106_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 36</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0106_0106_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 36</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0106_0106_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 36</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-7"><label for="division-facts-to-7-times-table-7" class="wtitle">Horizontally Arranged Division Facts up to the 7 Times Table</label>
<div class="desc">
<a href="division/division_facts_0107_0107_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 49</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0107_0107_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 49</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0107_0107_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 49</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Some students require chunking and more practice before they can handle the more complex pages with many different divisors. Here the worksheets only contain one divisor and there are several repetitions of the set on each page.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-8"><label for="division-facts-to-7-times-table-8" class="wtitle">Dividing by Individual Facts up to the 7 Times Table</label>
<div class="desc">
<a href="division/vertical_division_facts_50_0101_0107_001.html" class="">Vertically Arranged <strong>Dividing by 1</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0202_0107_001.html" class="">Vertically Arranged <strong>Dividing by 2</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0303_0107_001.html" class="">Vertically Arranged <strong>Dividing by 3</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0404_0107_001.html" class="">Vertically Arranged <strong>Dividing by 4</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0505_0107_001.html" class="">Vertically Arranged <strong>Dividing by 5</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0606_0107_001.html" class="">Vertically Arranged <strong>Dividing by 6</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0707_0107_001.html" class="">Vertically Arranged <strong>Dividing by 7</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-9"><label for="division-facts-to-7-times-table-9" class="wtitle">Dividing by Groups of Individual Facts up to the 7 Times Table</label>
<div class="desc">
<a href="division/division_facts_combo_125_0107_001.html" class="">Vertically Arranged <strong>Dividing by 1, 2 and 5</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_combo_346_0107_001.html" class="">Vertically Arranged <strong>Dividing by 3, 4 and 6</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>More individual division facts worksheets but with a horizontal arrangement. This section includes 50 and 25 question options with each set repeated on the page.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-10"><label for="division-facts-to-7-times-table-10" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 7 Times Table (50 Questions per Page)</label>
<div class="desc">
<a href="division/horizontal_division_facts50_0101_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0202_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0303_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0404_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0505_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0606_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0707_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 7 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-7-times-table-11"><label for="division-facts-to-7-times-table-11" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 7 Times Table (25 Large Print Questions per Page)</label>
<div class="desc">
<a href="division/horizontal_division_facts25lp_0101_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0202_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0303_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0404_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0505_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0606_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0707_0107_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 7 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="division-facts-to-9-times-table">Division Facts up to the 9 Times Table</h2>
</div>
<div class="imagearea">
<img src="division/images/division_facts_vertical_long_0109_0109_50_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Manipulatives can help students "get" the concept of division. For example, students could regroup base ten blocks into units, then divide the units into piles. For the question 81 ÷ 9, students would start with eight ten blocks and one unit block. They would trade in the ten blocks for unit blocks and try to distribute all 81 of the unit blocks into nine piles. If they did it correctly, they would end up with 9 piles of 9 units and could say that 81 ÷ 9 = 9 as there are 9 units in each pile.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-12"><label for="division-facts-to-9-times-table-12" class="wtitle">Division Facts up to the 9 Times Table With a Long Division Symbol</label>
<div class="desc">
<a href="division/division_facts_vertical_long_0108_0108_50_001.html" class="">Vertical Division Facts <strong>Up To The 8 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0109_0109_50_001.html" class="">Vertical Division Facts <strong>Up To The 9 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-13"><label for="division-facts-to-9-times-table-13" class="wtitle">Division Facts up to the 9 Times Table with a Division Sign</label>
<div class="desc">
<a href="division/division_facts_vertical_0108_0108_001.html" class="">Vertical Division Facts <strong>Dividends to 64</strong> With Division Sign</a>
<a href="division/division_facts_vertical_0109_0109_001.html" class="">Vertical Division Facts <strong>Dividends to 81</strong> With Division Sign</a>
<a href="division/division_facts_vertical_0109_0109_lp_001.html" class="">Large Print Vertical Division Facts <strong>Dividends to 81</strong> With Division Sign</a>
</div>
</li>
<li><p>If students learn up to the 9 times table and can do all the related division, they are likely to do well in later math studies. Long multiplication and long division, algebra, and many other math topics rely on students knowing these facts. Division facts worksheets up to the nine times tables can be used for students to practice, as a diagnostic test to see what gaps exist, or as a mastery test before moving on to the next topic. This section includes horizontally arranged questions which allows for a 100 per page option. Worksheets up to the 8 times table are also included to ensure a continual flow with the rest of this page, say, if you were adding one number at a time.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-14"><label for="division-facts-to-9-times-table-14" class="wtitle">Horizontally Arranged Division Facts up to the 8 Times Table</label>
<div class="desc">
<a href="division/division_facts_0108_0108_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 64</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0108_0108_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 64</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0108_0108_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 64</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-15"><label for="division-facts-to-9-times-table-15" class="wtitle">Horizontally Arranged Division Facts up to the 9 Times Table</label>
<div class="desc">
<a href="division/division_facts_0109_0109_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 81</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0109_0109_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 81</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0109_0109_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 81</strong> (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>More individual facts where a single number is used as the divisor throughout the entire worksheet. The quotients end up being in the range 1 to 9. These are great for students that need more practice on one or more divisors. This might be identified using a diagnostic test of a worksheet that includes all the division facts. If students consistently get questions wrong with a certain divisor, these worksheets might help them.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-16"><label for="division-facts-to-9-times-table-16" class="wtitle">Dividing by Individual Facts up to the 9 Times Table </label>
<div class="desc">
<a href="division/vertical_division_facts_50_0101_0109_001.html" class="">Vertically Arranged <strong>Dividing by 1</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0202_0109_001.html" class="">Vertically Arranged <strong>Dividing by 2</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0303_0109_001.html" class="">Vertically Arranged <strong>Dividing by 3</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0404_0109_001.html" class="">Vertically Arranged <strong>Dividing by 4</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0505_0109_001.html" class="">Vertically Arranged <strong>Dividing by 5</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0606_0109_001.html" class="">Vertically Arranged <strong>Dividing by 6</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0707_0109_001.html" class="">Vertically Arranged <strong>Dividing by 7</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0808_0109_001.html" class="">Vertically Arranged <strong>Dividing by 8</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0909_0109_001.html" class="">Vertically Arranged <strong>Dividing by 9</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-17"><label for="division-facts-to-9-times-table-17" class="wtitle">Dividing by Groups of Individual Facts up to the 9 Times Table </label>
<div class="desc">
<a href="division/division_facts_combo_125_0109_001.html" class="">Vertically Arranged <strong>Dividing by 1, 2 and 5</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_combo_346_0109_001.html" class="">Vertically Arranged <strong>Dividing by 3, 4 and 6</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_combo_789_0109_001.html" class="">Vertically Arranged <strong>Dividing by 7, 8 and 9</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Same as the previous section except with horizontally arranged questions and more options for the number of questions per page.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-18"><label for="division-facts-to-9-times-table-18" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 9 Times Table (100 Questions)</label>
<div class="desc">
<a href="division/division_facts_0101_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0202_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0303_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0404_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0505_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0606_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0707_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0808_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0909_0109_0_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 9 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-19"><label for="division-facts-to-9-times-table-19" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 9 Times Table (50 Questions)</label>
<div class="desc">
<a href="division/horizontal_division_facts50_0101_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0202_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0303_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0404_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0505_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0606_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0707_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0808_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0909_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 9 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-9-times-table-20"><label for="division-facts-to-9-times-table-20" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 9 Times Table (25 Large Print Questions)</label>
<div class="desc">
<a href="division/horizontal_division_facts25lp_0101_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0202_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0303_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0404_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0505_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0606_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0707_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0808_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0909_0109_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 9 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="division-facts-to-10-times-table">Division Facts up to the 10 Times Table</h2>
</div>
<div class="imagearea">
<img src="division/images/division_facts_vertical_long_0110_0110_50_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Ten is such an important number in math. Our entire numbering system is based on tens. There are ten digits and each lower place is a tenth (divided by 10) of the place before it. Although 10 is a two-digit number, it is almost always included in multiplication and division facts learning. Multiplying and dividing by 10 is so important there is a whole page (powers of ten) on Math-Drills dedicated to it.</p></li>
<li><p>If you jumped right to this section, you cannot be blamed! A lot of students learn their times tables all at once and that means including the most important 10! So, when they are ready for division worksheets, they are ready for this section. For students who might be struggling a bit though, please scroll up and start them off with something a little more at their pace.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-21"><label for="division-facts-to-10-times-table-21" class="wtitle">Division Facts up to the 10 Times Table With a Long Division Symbol</label>
<div class="desc">
<a href="division/division_facts_vertical_long_0110_0110_50_001.html" class="">Vertical Division Facts <strong>Up To The 10 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-22"><label for="division-facts-to-10-times-table-22" class="wtitle">Division Facts up to the 10 Times Table with a Division Sign</label>
<div class="desc">
<a href="division/division_facts_vertical_0110_0110_001.html" class="">Vertical Division Facts <strong>Dividends to 100</strong> With Division Sign</a>
</div>
</li>
<li><p>Even with its size, 10 is often the easiest divisor to use... well, besides 1. This section includes horizontally arranged practice questions for all the division facts from the 1 times to the 10 times table.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-23"><label for="division-facts-to-10-times-table-23" class="wtitle">Horizontally Arranged Division Facts up to the 10 Times Table</label>
<div class="desc">
<a href="division/division_facts_0110_0110_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 100</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0110_0110_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 100</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>The worksheets in this section are included for students that need the facts one at a time with quotients from 1 to 10.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-24"><label for="division-facts-to-10-times-table-24" class="wtitle">Dividing by Individual Facts up to the 10 Times Table</label>
<div class="desc">
<a href="division/vertical_division_facts_50_0101_0110_001.html" class="">Vertically Arranged <strong>Dividing by 1</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0202_0110_001.html" class="">Vertically Arranged <strong>Dividing by 2</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0303_0110_001.html" class="">Vertically Arranged <strong>Dividing by 3</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0404_0110_001.html" class="">Vertically Arranged <strong>Dividing by 4</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0505_0110_001.html" class="">Vertically Arranged <strong>Dividing by 5</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0606_0110_001.html" class="">Vertically Arranged <strong>Dividing by 6</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0707_0110_001.html" class="">Vertically Arranged <strong>Dividing by 7</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0808_0110_001.html" class="">Vertically Arranged <strong>Dividing by 8</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0909_0110_001.html" class="">Vertically Arranged <strong>Dividing by 9</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1010_0110_001.html" class="">Vertically Arranged <strong>Dividing by 10</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-25"><label for="division-facts-to-10-times-table-25" class="wtitle">Dividing by Groups of Individual Facts up to the 10 Times Table</label>
<div class="desc">
<a href="division/division_facts_combo_12510_0110_001.html" class="">Vertically Arranged <strong>Dividing by 1, 2, 5 and 10</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_combo_346_0110_001.html" class="">Vertically Arranged <strong>Dividing by 3, 4 and 6</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_combo_789_0110_001.html" class="">Vertically Arranged <strong>Dividing by 7, 8 and 9</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>A horizontal repeat of the previous section.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-26"><label for="division-facts-to-10-times-table-26" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 10 Times Table (100 Questions)</label>
<div class="desc">
<a href="division/division_facts_0101_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0202_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0303_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0404_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0505_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0606_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0707_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0808_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0909_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_1010_0110_0_001.html" class="">Horizontally Arranged <strong>Dividing by 10</strong> with Quotients 1 to 10 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-27"><label for="division-facts-to-10-times-table-27" class="wtitle">Horizontally Arranged Dividing by Individual Facts with up to the 10 Times Table (50 Questions)</label>
<div class="desc">
<a href="division/horizontal_division_facts50_0101_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0202_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0303_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0404_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0505_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0606_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0707_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0808_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0909_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_1010_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 10</strong> with Quotients 1 to 10 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-10-times-table-28"><label for="division-facts-to-10-times-table-28" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 10 Times Table (25 Large Print Questions)</label>
<div class="desc">
<a href="division/horizontal_division_facts25lp_0101_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0202_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0303_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0404_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0505_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0606_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0707_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0808_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0909_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_1010_0110_001.html" class="">Horizontally Arranged <strong>Dividing by 10</strong> with Quotients 1 to 10 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="division-facts-to-12-times-table">Division Facts up to the 12 Times Table</h2>
</div>
<div class="imagearea">
<img src="division/images/division_facts_vertical_long_0112_0112_50_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Ah, twelve. Educators have a penchant for the the 12 times table likely because it is important in clocks, eggs, the Vendergood language, and definitely to the Dozenal Societies of America and Great Britain. In mathematics, it is seen mostly in the completion of both multiplication and division facts worksheets. Since Math-Drills is happy to support the base twelve system, we present worksheets with division facts up to the 12 times table in the unlikely event that the duodecimal (aka dozenal) system is ever adopted.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-29"><label for="division-facts-to-12-times-table-29" class="wtitle">Division Facts up to the 12 Times Table with a Long Division Symbol</label>
<div class="desc">
<a href="division/division_facts_vertical_long_0111_0111_50_001.html" class="">Vertical Division Facts <strong>Up To The 11 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0112_0112_50_001.html" class="">Vertical Division Facts <strong>Up To The 12 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-30"><label for="division-facts-to-12-times-table-30" class="wtitle">Division Facts up to the 12 Times Table with a Division Sign</label>
<div class="desc">
<a href="division/division_facts_vertical_0112_0112_001.html" class="">Vertical Division Facts <strong>Dividends to 144</strong> With Division Sign</a>
</div>
</li>
<li><p>Division is essentially asking the question, "How many _____'s are in _____?" For the question, 81 ÷ 9, the prompt would sound like, "How many 9's are in 81?" This prompt will benefit students in later math studies when there are more complex concepts such as dividing decimals or fractions. "How many thirds are in four?" or even better, "How many third cups are in four cups?" If necessary, get out the measuring cups.</p></li>
<li><p>This important section includes worksheets with division facts up to the 12 times table with a 100 question option.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-31"><label for="division-facts-to-12-times-table-31" class="wtitle">Horizontally Arranged Division Facts up to the 12 Times Table</label>
<div class="desc">
<a href="division/division_facts_0112_0112_0_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 144</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0112_0112_001.html" class="">Horizontally Arranged Division Facts with <strong>Dividends to 144</strong> (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>So, if you are having your students learn division facts up to the 12 times table, it might be useful to have some worksheets with individual facts for a few students who might be overwhelmed with everything at once!</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-32"><label for="division-facts-to-12-times-table-32" class="wtitle">Dividing by Individual Facts up to the 12 Times Table</label>
<div class="desc">
<a href="division/vertical_division_facts_50_0101_0112_001.html" class="">Vertically Arranged <strong>Dividing by 1</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0202_0112_001.html" class="">Vertically Arranged <strong>Dividing by 2</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0303_0112_001.html" class="">Vertically Arranged <strong>Dividing by 3</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0404_0112_001.html" class="">Vertically Arranged <strong>Dividing by 4</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0505_0112_001.html" class="">Vertically Arranged <strong>Dividing by 5</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0606_0112_001.html" class="">Vertically Arranged <strong>Dividing by 6</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0707_0112_001.html" class="">Vertically Arranged <strong>Dividing by 7</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0808_0112_001.html" class="">Vertically Arranged <strong>Dividing by 8</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_0909_0112_001.html" class="">Vertically Arranged <strong>Dividing by 9</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1010_0112_001.html" class="">Vertically Arranged <strong>Dividing by 10</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1111_0112_001.html" class="">Vertically Arranged <strong>Dividing by 11</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1212_0112_001.html" class="">Vertically Arranged <strong>Dividing by 12</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-33"><label for="division-facts-to-12-times-table-33" class="wtitle">Dividing by Groups of Individual Facts up to the 12 Times Table</label>
<div class="desc">
<a href="division/division_facts_12510_0112_001.html" class="">Vertically Arranged <strong>Dividing by 1, 2, 5 and 10</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_346_0112_001.html" class="">Vertically Arranged <strong>Dividing by 3, 4 and 6</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_789_0112_001.html" class="">Vertically Arranged <strong>Dividing by 7, 8 and 9</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_1112_0112_001.html" class="">Vertically Arranged <strong>Dividing by 11 and 12</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Same idea as the previous section, but with a horizontal arrangement and different numbers of questions on each page.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-34"><label for="division-facts-to-12-times-table-34" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 12 Times Table (100 Questions)</label>
<div class="desc">
<a href="division/division_facts_0101_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0202_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0303_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0404_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0505_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0606_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0707_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0808_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_0909_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_1010_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 10</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_1111_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 11</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/division_facts_1212_0112_0_001.html" class="">Horizontally Arranged <strong>Dividing by 12</strong> with Quotients 1 to 12 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-35"><label for="division-facts-to-12-times-table-35" class="wtitle">Horizontally Arranged Dividing by Groups of Individual Facts up to the 12 Times Table (100 Questions)</label>
<div class="desc">
<a href="division/division_facts_horizontal_12510_0112_001.html" class="">Horizontally Arranged Dividing by 1, 2, 5 and 10 (Quotient 1-12)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-36"><label for="division-facts-to-12-times-table-36" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 12 Times Table (50 Questions)</label>
<div class="desc">
<a href="division/horizontal_division_facts50_0101_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0202_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0303_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0404_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0505_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0606_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0707_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0808_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_0909_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_1010_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 10</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_1111_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 11</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts50_1212_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 12</strong> with Quotients 1 to 12 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-to-12-times-table-37"><label for="division-facts-to-12-times-table-37" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 12 Times Table (25 Large Print Questions)</label>
<div class="desc">
<a href="division/horizontal_division_facts25lp_0101_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 1</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0202_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 2</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0303_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 3</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0404_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 4</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0505_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 5</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0606_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 6</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0707_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 7</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0808_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 8</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_0909_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 9</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_1010_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 10</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_1111_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 11</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts25lp_1212_0112_001.html" class="">Horizontally Arranged <strong>Dividing by 12</strong> with Quotients 1 to 12 (<strong>25 Questions</strong>; Large Print) <span class="iedit">✎</span></a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="division-facts-beyond-12-times-table">Division Facts beyond the 12 Times Table</h2>
</div>
<div class="imagearea">
<img src="division/images/division_facts_vertical_long_0115_0115_50_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Scenario: you have some students that have aced the division facts up to the 12 times table and need more of a challenge. This section has got you covered. Is there an argument for learning division facts for times tables beyond 9? 10? 12? Sure, why not. Students are likely to apply their knowledge in future math studies by instantly recognizing that the square root of 625 is 25, for example.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-beyond-12-times-table-38"><label for="division-facts-beyond-12-times-table-38" class="wtitle">Division Facts up to the 25 Times Table With a Long Division Symbol</label>
<div class="desc">
<a href="division/division_facts_vertical_long_0113_0113_50_001.html" class="">Vertical Division Facts <strong>Up To the 13 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0114_0114_50_001.html" class="">Vertical Division Facts <strong>Up To the 14 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0115_0115_50_001.html" class="">Vertical Division Facts <strong>Up To the 15 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0116_0116_50_001.html" class="">Vertical Division Facts <strong>Up To the 16 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0117_0117_50_001.html" class="">Vertical Division Facts <strong>Up To the 17 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0118_0118_50_001.html" class="">Vertical Division Facts <strong>Up To the 18 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0119_0119_50_001.html" class="">Vertical Division Facts <strong>Up To the 19 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0120_0120_50_001.html" class="">Vertical Division Facts <strong>Up To the 20 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0521_0521_50_001.html" class="">Vertical Division Facts <strong>From 5 Up To the 21 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0522_0522_50_001.html" class="">Vertical Division Facts <strong>From 5 Up To the 22 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0523_0523_50_001.html" class="">Vertical Division Facts <strong>From 5 Up To the 23 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0524_0524_50_001.html" class="">Vertical Division Facts <strong>From 5 Up To the 24 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
<a href="division/division_facts_vertical_long_0525_0525_50_001.html" class="">Vertical Division Facts <strong>From 5 Up To the 25 Times Table</strong> With Long Division Symbol/Bracket (50 per page) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-beyond-12-times-table-39"><label for="division-facts-beyond-12-times-table-39" class="wtitle">Division Facts Up to the 15 Times Table With a Division Sign</label>
<div class="desc">
<a href="division/division_facts_vertical_0113_0113_001.html" class="">Vertical Division Facts <strong>Dividends to 169</strong> With Division Sign</a>
<a href="division/division_facts_vertical_0114_0114_001.html" class="">Vertical Division Facts <strong>Dividends to 196</strong> With Division Sign</a>
<a href="division/division_facts_vertical_0115_0115_001.html" class="">Vertical Division Facts <strong>Dividends to 225</strong> With Division Sign</a>
</div>
</li>
<li><p>There are certainly a few questions on these worksheets that will be useful knowledge later on. If your students are interested in learning them, anything to do with 16, 20, 24, and 25 will certainly be useful, and likely someone could come up with a reason for learning the others. Sixteen is used in the base 16 (aka hexadecimal system), so converting hexadecimal numbers to decimal numbers involves dividing (and multiplying by 16). Twenty is a great number that is divisible by six different numbers and in turn is a factor of some important numbers. Twenty is also a coin unit in many countries. Twenty-four hours is the length of a day, so if you wanted to know how many days were in 288 hours, you might want to know your 24 times table division facts. Twenty-five, well that is the value of a quarter, isn't it? You could also calculate how many seconds of PAL video you have by dividing the number of frames by 25!</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-beyond-12-times-table-40"><label for="division-facts-beyond-12-times-table-40" class="wtitle">Horizontally Arranged Division Facts up to the 20 Times Table</label>
<div class="desc">
<a href="division/division_facts_0113_0113_0_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 13 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/division_facts_0114_0114_0_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 14 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/division_facts_0115_0115_0_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 15 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_0216_0216_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 16 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_0217_0217_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 17 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_0218_0218_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 18 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_0219_0219_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 19 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_0220_0220_001.html" class="">Horizontally Arranged Division Facts <strong>Up to the 20 Times Table</strong> (<strong>100</strong> Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>If the previous two sections are a little tough to handle right out of the gates, perhaps start with these worksheets that only deal with one of the divisors at a time.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-beyond-12-times-table-41"><label for="division-facts-beyond-12-times-table-41" class="wtitle">Dividing by Individual Facts up to the 25 Times Table</label>
<div class="desc">
<a href="division/vertical_division_facts_50_1313_0113_001.html" class="">Vertically Arranged <strong>Dividing by 13</strong> with Quotients 1 to 13 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1414_0114_001.html" class="">Vertically Arranged <strong>Dividing by 14</strong> with Quotients 1 to 14 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1515_0115_001.html" class="">Vertically Arranged <strong>Dividing by 15</strong> with Quotients 1 to 15 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1616_0116_001.html" class="">Vertically Arranged <strong>Dividing by 16</strong> with Quotients 1 to 16 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1717_0117_001.html" class="">Vertically Arranged <strong>Dividing by 17</strong> with Quotients 1 to 17 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1818_0118_001.html" class="">Vertically Arranged <strong>Dividing by 18</strong> with Quotients 1 to 18 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_1919_0119_001.html" class="">Vertically Arranged <strong>Dividing by 19</strong> with Quotients 1 to 19 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_2020_0120_001.html" class="">Vertically Arranged <strong>Dividing by 20</strong> with Quotients 1 to 20 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_2121_0121_001.html" class="">Vertically Arranged <strong>Dividing by 21</strong> with Quotients 1 to 21 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_2222_0122_001.html" class="">Vertically Arranged <strong>Dividing by 22</strong> with Quotients 1 to 22 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_2323_0123_001.html" class="">Vertically Arranged <strong>Dividing by 23</strong> with Quotients 1 to 23 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_2424_0124_001.html" class="">Vertically Arranged <strong>Dividing by 24</strong> with Quotients 1 to 24 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/vertical_division_facts_50_2525_0125_001.html" class="">Vertically Arranged <strong>Dividing by 25</strong> with Quotients 1 to 25 (<strong>50 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Even more of the previous section, but with 100 questions per page and a horizonal arrangement.</p></li>
<li><input type="checkbox" class="list-checkbox" id="division-facts-beyond-12-times-table-42"><label for="division-facts-beyond-12-times-table-42" class="wtitle">Horizontally Arranged Dividing by Individual Facts up to the 25 Times Table</label>
<div class="desc">
<a href="division/horizontal_division_facts_1313_0113_001.html" class="">Horizontally Arranged <strong>Dividing by 13</strong> with Quotients 1 to 13 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_1414_0114_001.html" class="">Horizontally Arranged <strong>Dividing by 14</strong> with Quotients 1 to 14 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_1515_0115_001.html" class="">Horizontally Arranged <strong>Dividing by 15</strong> with Quotients 1 to 15 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_1616_0116_001.html" class="">Horizontally Arranged <strong>Dividing by 16</strong> with Quotients 1 to 16 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_1717_0117_001.html" class="">Horizontally Arranged <strong>Dividing by 17</strong> with Quotients 1 to 17 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_1818_0118_001.html" class="">Horizontally Arranged <strong>Dividing by 18</strong> with Quotients 1 to 18 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_1919_0119_001.html" class="">Horizontally Arranged <strong>Dividing by 19</strong> with Quotients 1 to 19 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_2020_0120_001.html" class="">Horizontally Arranged <strong>Dividing by 20</strong> with Quotients 1 to 20 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_2121_0121_001.html" class="">Horizontally Arranged <strong>Dividing by 21</strong> with Quotients 1 to 21 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_2222_0122_001.html" class="">Horizontally Arranged <strong>Dividing by 22</strong> with Quotients 1 to 22 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_2323_0123_001.html" class="">Horizontally Arranged <strong>Dividing by 23</strong> with Quotients 1 to 23 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_2424_0124_001.html" class="">Horizontally Arranged <strong>Dividing by 24</strong> with Quotients 1 to 24 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
<a href="division/horizontal_division_facts_2525_0125_001.html" class="">Horizontally Arranged <strong>Dividing by 25</strong> with Quotients 1 to 25 (<strong>100 Questions</strong>) <span class="iedit">✎</span></a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="long-division-worksheets">Long division Worksheets</h2>
</div>
<div class="imagearea">
<img src="division/images/division_long_2dd4dq_nr_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Need an easier way to divide large numbers? Try this method using powers of ten. To successfully use this method, students need to be able to multiply by powers of ten and to subtract. Students subtract the dividend multiplied by decreasing powers of ten until they have zero or a remainder. Example: 1458 ÷ 54. Note 54 × <b>1</b> = 54, 54 × <b>10</b> = 540 (nothing greater is needed). 1458 - 540 - 540 = 378. Note that 540 was subtracted twice, so the number of times that 54 "goes into" 1458 so far is 20 times. Continuing, 378 - 54 - 54 - 54 - 54 - 54 - 54 - 54 = 0. Since 54 was subtracted seven times, the quotient increases by seven for a total of 27. In other words, 54 "goes into" 1458, 27 times.</p></li>
<li><p>We might also mention that this method can be even more sophisticated by using multiples of powers of ten. In the above example, using 54 × 5 = 270 would have helped to get to the quotient quicker.</p></li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-43"><label for="long-division-worksheets-43" class="wtitle">Long Division Worksheets with No Remainders</label>
<div class="desc">
<a href="division/long_division_by_multiple_10_nr_001.html" class="">Long Division with No Remainders with a Multiple of Ten Divisor and a 2-Digit Quotient</a>
<a href="division/division_long_1dd1dq_nr_001.html" class="">Long Division with No Remainders with a 1-Digit Divisor and a 1-Digit Quotient</a>
<a href="division/division_long_1dd2dq_nr_001.html" class="">Long Division with No Remainders with a 1-Digit Divisor and a 2-Digit Quotient</a>
<a href="division/division_long_1dd3dq_nr_001.html" class="">Long Division with No Remainders with a 1-Digit Divisor and a 3-Digit Quotient</a>
<a href="division/division_long_2dd2dq_nr_001.html" class="">Long Division with No Remainders with a 2-Digit Divisor and a 2-Digit Quotient</a>
<a href="division/division_long_2dd3dq_nr_001.html" class="">Long Division with No Remainders with a 2-Digit Divisor and a 3-Digit Quotient</a>
<a href="division/division_long_2dd4dq_nr_001.html" class="">Long Division with No Remainders with a 2-Digit Divisor and a 4-Digit Quotient</a>
<a href="division/division_long_3dd3dq_nr_001.html" class="">Long Division with No Remainders with a 3-Digit Divisor and a 3-Digit Quotient</a>
<a href="division/division_long_3dd4dq_nr_001.html" class="">Long Division with No Remainders with a 3-Digit Divisor and a 4-Digit Quotient</a>
<a href="division/division_long_3dd5dq_nr_001.html" class="">Long Division with No Remainders with a 3-Digit Divisor and a 5-Digit Quotient</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-44"><label for="long-division-worksheets-44" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-eu"></use></svg> European Format Long Division Worksheets with No Remainders</label>
<div class="desc">
<a href="division/euro_division_long_1dd1dq_nr_001.html" class="">European Format Long Division with No Remainders with a 1-Digit Divisor and a 1-Digit Quotient</a>
<a href="division/euro_division_long_1dd2dq_nr_001.html" class="">European Format Long Division with No Remainders with a 1-Digit Divisor and a 2-Digit Quotient</a>
<a href="division/euro_division_long_1dd3dq_nr_001.html" class="">European Format Long Division with No Remainders with a 1-Digit Divisor and a 3-Digit Quotient</a>
<a href="division/euro_division_long_2dd2dq_nr_001.html" class="">European Format Long Division with No Remainders with a 2-Digit Divisor and a 2-Digit Quotient</a>
<a href="division/euro_division_long_2dd3dq_nr_001.html" class="">European Format Long Division with No Remainders with a 2-Digit Divisor and a 3-Digit Quotient</a>
<a href="division/euro_division_long_2dd4dq_nr_001.html" class="">European Format Long Division with No Remainders with a 2-Digit Divisor and a 4-Digit Quotient</a>
<a href="division/euro_division_long_3dd2dq_nr_001.html" class="">European Format Long Division with No Remainders with a 3-Digit Divisor and a 2-Digit Quotient</a>
<a href="division/euro_division_long_3dd3dq_nr_001.html" class="">European Format Long Division with No Remainders with a 3-Digit Divisor and a 3-Digit Quotient</a>
<a href="division/euro_division_long_3dd4dq_nr_001.html" class="">European Format Long Division with No Remainders with a 3-Digit Divisor and a 4-Digit Quotient</a>
</div>
</li>
<li><p>Have you ever thought that you could help a student understand things better and get a more precise answer while still using remainders? It's quite easy really. Remainders are usually given out of context, including on the answer keys below. A remainder is really a numerator in a fractional quotient. For example 19 ÷ 3 is 6 with a remainder of 1 which is more precisely 6 1/3. Using fractional quotients means your students will always find the exact answer to all long division questions, and in many cases the answer will actually be more precise (e.g. compare 6 1/3 with 6.3333....).</p></li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-45"><label for="long-division-worksheets-45" class="wtitle">Long Division Worksheets with Remainders</label>
<div class="desc">
<a href="division/long_division_by_multiple_10_wr_001.html" class="">Long Division with Remainders with a Multiple of Ten Divisor and a 2-Digit Quotient</a>
<a href="division/division_long_1dd2dd_r_001.html" class="">Long Division with Remainders with a 1-Digit Divisor and a 2-Digit Dividend</a>
<a href="division/division_long_1dd3dd_r_001.html" class="">Long Division with Remainders with a 1-Digit Divisor and a 3-Digit Dividend</a>
<a href="division/division_long_1dd4dd_r_001.html" class="">Long Division with Remainders with a 1-Digit Divisor and a 4-Digit Dividend</a>
<a href="division/division_long_2dd3dd_r_001.html" class="">Long Division with Remainders with a 2-Digit Divisor and a 3-Digit Dividend</a>
<a href="division/division_long_2dd4dd_r_001.html" class="">Long Division with Remainders with a 2-Digit Divisor and a 4-Digit Dividend</a>
<a href="division/division_long_2dd5dd_r_001.html" class="">Long Division with Remainders with a 2-Digit Divisor and a 5-Digit Dividend</a>
<a href="division/division_long_3dd4dd_r_001.html" class="">Long Division with Remainders with a 3-Digit Divisor and a 4-Digit Dividend</a>
<a href="division/division_long_3dd5dd_r_001.html" class="">Long Division with Remainders with a 3-Digit Divisor and a 5-Digit Dividend</a>
<a href="division/division_long_3dd6dd_r_001.html" class="">Long Division with Remainders with a 3-Digit Divisor and a 6-Digit Dividend</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-46"><label for="long-division-worksheets-46" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-eu"></use></svg> European Format Long Division Worksheets with Remainders</label>
<div class="desc">
<a href="division/euro_division_long_1dd2dd_r_001.html" class="">European Format Long Division with Remainders with a 1-Digit Divisor and a 2-Digit Dividend</a>
<a href="division/euro_division_long_1dd3dd_r_001.html" class="">European Format Long Division with Remainders with a 1-Digit Divisor and a 3-Digit Dividend</a>
<a href="division/euro_division_long_1dd4dd_r_001.html" class="">European Format Long Division with Remainders with a 1-Digit Divisor and a 4-Digit Dividend</a>
<a href="division/euro_division_long_2dd3dd_r_001.html" class="">European Format Long Division with Remainders with a 2-Digit Divisor and a 3-Digit Dividend</a>
<a href="division/euro_division_long_2dd4dd_r_001.html" class="">European Format Long Division with Remainders with a 2-Digit Divisor and a 4-Digit Dividend</a>
<a href="division/euro_division_long_2dd5dd_r_001.html" class="">European Format Long Division with Remainders with a 2-Digit Divisor and a 5-Digit Dividend</a>
<a href="division/euro_division_long_3dd4dd_r_001.html" class="">European Format Long Division with Remainders with a 3-Digit Divisor and a 4-Digit Dividend</a>
<a href="division/euro_division_long_3dd5dd_r_001.html" class="">European Format Long Division with Remainders with a 3-Digit Divisor and a 5-Digit Dividend</a>
<a href="division/euro_division_long_3dd6dd_r_001.html" class="">European Format Long Division with Remainders with a 3-Digit Divisor and a 6-Digit Dividend</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-47"><label for="long-division-worksheets-47" class="wtitle">Long Division Worksheets with Decimal Quotients</label>
<div class="desc">
<a href="division/division_long_1dd2dd_d_001.html" class="">Long Division with Decimal Quotients with a 1-Digit Divisor; 2-Digit Dividend</a>
<a href="division/division_long_1dd3dd_d_001.html" class="">Long Division with Decimal Quotients with a 1-Digit Divisor; 3-Digit Dividend</a>
<a href="division/division_long_1dd4dd_d_001.html" class="">Long Division with Decimal Quotients with a 1-Digit Divisor; 4-Digit Dividend</a>
<a href="division/division_long_2dd3dd_d_001.html" class="">Long Division with Decimal Quotients with a 2-Digit Divisor; 3-Digit Dividend</a>
<a href="division/division_long_2dd4dd_d_001.html" class="">Long Division with Decimal Quotients with a 2-Digit Divisor; 4-Digit Dividend</a>
<a href="division/division_long_2dd5dd_d_001.html" class="">Long Division with Decimal Quotients with a 2-Digit Divisor; 5-Digit Dividend</a>
<a href="division/division_long_3dd4dd_d_001.html" class="">Long Division with Decimal Quotients with a 3-Digit Divisor; 4-Digit Dividend</a>
<a href="division/division_long_3dd5dd_d_001.html" class="">Long Division with Decimal Quotients with a 3-Digit Divisor; 5-Digit Dividend</a>
<a href="division/division_long_3dd6dd_d_001.html" class="">Long Division with Decimal Quotients with a 3-Digit Divisor; 6-Digit Dividend</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-48"><label for="long-division-worksheets-48" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-eu"></use></svg> European Format Long Division Worksheets with Decimal Quotients</label>
<div class="desc">
<a href="division/euro_division_long_1dd2dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 1-Digit Divisor; 2-Digit Dividend</a>
<a href="division/euro_division_long_1dd3dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 1-Digit Divisor; 3-Digit Dividend</a>
<a href="division/euro_division_long_2dd2dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 2-Digit Divisor; 2-Digit Dividend</a>
<a href="division/euro_division_long_2dd3dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 2-Digit Divisor; 3-Digit Dividend</a>
<a href="division/euro_division_long_2dd4dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 2-Digit Divisor; 4-Digit Dividend</a>
<a href="division/euro_division_long_3dd3dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 3-Digit Divisor; 3-Digit Dividend</a>
<a href="division/euro_division_long_3dd4dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 3-Digit Divisor; 4-Digit Dividend</a>
<a href="division/euro_division_long_3dd5dd_d_001.html" class="">European Format Long Division with Decimal Quotients with a 3-Digit Divisor; 5-Digit Dividend</a>
</div>
</li>
<li><p>We thought it might be helpful to include some long division worksheets with the steps shown. The answer keys for these division worksheets use the standard algorithm that you might learn if you went to an English speaking school. Learning this algorithm by itself is sometimes not enough as it may not lead to a good conceptual understanding. One tool that helps students learn the standard algorithm and develop an understanding of division is a set of base ten blocks. By teaching students division with base ten blocks first then progressing to the standard algorithm, students will gain a conceptual understanding plus have the use of an efficient algorithm for long division. Students who have both of these things will naturally experience more success in their future mathematical studies.</p></li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-49"><label for="long-division-worksheets-49" class="wtitle">Long Division with 1-Digit Divisors with the Steps Shown on the Answer Key</label>
<div class="desc">
<a href="division/division_long_steps_1dd2dd_r_001.html" class=""><strong>2-Digit by 1-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_1dd3dd_r_001.html" class=""><strong>3-Digit by 1-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_1dd4dd_r_001.html" class=""><strong>4-Digit by 1-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_1dd5dd_r_001.html" class=""><strong>5-Digit by 1-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_1dd6dd_r_001.html" class=""><strong>6-Digit by 1-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-50"><label for="long-division-worksheets-50" class="wtitle">Long Division with 2-Digit Divisors with the Steps Shown on the Answer Key</label>
<div class="desc">
<a href="division/division_long_steps_2dd3dd_r_001.html" class=""><strong>3-Digit by 2-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_2dd4dd_r_001.html" class=""><strong>4-Digit by 2-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_2dd5dd_r_001.html" class=""><strong>5-Digit by 2-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_2dd6dd_r_001.html" class=""><strong>6-Digit by 2-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-51"><label for="long-division-worksheets-51" class="wtitle">Long Division with 3-Digit Divisors with the Steps Shown on the Answer Key</label>
<div class="desc">
<a href="division/division_long_steps_3dd4dd_r_001.html" class=""><strong>4-Digit by 3-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_3dd5dd_r_001.html" class=""><strong>5-Digit by 3-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
<a href="division/division_long_steps_3dd6dd_r_001.html" class=""><strong>6-Digit by 3-Digit</strong> Long Division with Remainders with the Steps Shown on the Answer Key</a>
</div>
</li>
<li><p>Some students find it difficult to get everything lined up when completing a long division algorithm, so these worksheets include a grid and wider spacing of the digits to help students get things in the right place. The answer keys include the typical steps that students would record while completing each problem; however, slight variations in implementation may occur. For example, some people don't bother with the subtraction signs,some might show steps subtracting zero, etc.</p></li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-52"><label for="long-division-worksheets-52" class="wtitle">Long Division Worksheets with Grid Assistance and Prompts (No Remainders)</label>
<div class="desc">
<a href="division/division_long_grid_1digit_divisor_2digit_dividend_prompts_no_remainders_001.html" class=""><strong>2-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_3digit_dividend_prompts_no_remainders_001.html" class=""><strong>3-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_3digit_dividend_prompts_no_remainders_001.html" class=""><strong>3-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_4digit_dividend_prompts_no_remainders_001.html" class=""><strong>4-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_4digit_dividend_prompts_no_remainders_001.html" class=""><strong>4-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_5digit_dividend_prompts_no_remainders_001.html" class=""><strong>5-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_5digit_dividend_prompts_no_remainders_001.html" class=""><strong>5-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_6digit_dividend_prompts_no_remainders_001.html" class=""><strong>6-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_6digit_dividend_prompts_no_remainders_001.html" class=""><strong>6-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and NO Remainders</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-53"><label for="long-division-worksheets-53" class="wtitle">Long Division Worksheets with Grid Assistance Only (No Remainders)</label>
<div class="desc">
<a href="division/division_long_grid_1digit_divisor_3digit_dividend_no_remainders_001.html" class=""><strong>3-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_3digit_dividend_no_remainders_001.html" class=""><strong>3-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_4digit_dividend_no_remainders_001.html" class=""><strong>4-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_4digit_dividend_no_remainders_001.html" class=""><strong>4-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_5digit_dividend_no_remainders_001.html" class=""><strong>5-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_5digit_dividend_no_remainders_001.html" class=""><strong>5-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_1digit_divisor_6digit_dividend_no_remainders_001.html" class=""><strong>6-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
<a href="division/division_long_grid_2digit_divisor_6digit_dividend_no_remainders_001.html" class=""><strong>6-Digit by 2-Digit</strong> Long Division with <strong>Grid Assistance</strong> and NO Remainders</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="long-division-worksheets-54"><label for="long-division-worksheets-54" class="wtitle">Long Division Worksheets with Grid Assistance and Prompts (Some Remainders)</label>
<div class="desc">
<a href="division/division_long_grid_1digit_divisor_2digit_dividend_prompts_remainders_001.html" class=""><strong>2-Digit by 1-Digit</strong> Long Division with <strong>Grid Assistance and Prompts</strong> and some Remainders</a>