-
Notifications
You must be signed in to change notification settings - Fork 13
/
addition.html
1072 lines (1040 loc) · 110 KB
/
addition.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/addition.php by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 30 Aug 2024 17:42:37 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="UTF-8">
<title>Addition Worksheets</title>
<meta name="description" content="Addition worksheets from addition facts and two-digit addition to column addition and addition with games.">
<meta name="keywords" content="addition, worksheets, adding, add, worksheet, facts">
<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="addition.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">Addition 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 Addition Worksheets this Week</a></div>
<div class="h2"><a href="#addition-tables">Addition Facts Tables</a></div>
<div class="h2"><a href="#five-minute-addition-frenzies">Five Minute Addition Frenzies</a></div>
<div class="h2"><a href="#single-digit-addition">Single-Digit Addition</a></div>
<div class="h2"><a href="#multi-digit-addition">Multi-Digit Addition</a></div>
<div class="h2"><a href="#multi-digit-addition-with-grid-support">Multi-Digit Addition with Grid Support</a></div>
<div class="h2"><a href="#various-addition">Various Other Addition 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 addition worksheets page at Math-Drills.com where we will add to your learning experience in many positive ways! On this page, you will find <span itemprop="description">Addition worksheets from addition facts and two-digit addition to column addition and addition with games.</span> In the first section, we've included a few addition printables that should help out the beginning student. Teaching addition facts is best done with some interesting teaching strategies.</p>
<p>Some teachers and parents use addition manipulatives to help students understand the basic addition facts. For example, adding groups of "Apple Jacks" (a breakfast cereal) by counting will quickly lead students to understand the concepts of addition. The sooner you can introduce base ten blocks to your students, the better. If you haven't already used them for counting, use them for basic addition and show students how regrouping works.</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 Addition Worksheets this Week</h2>
<div class="searchresults">
<a href="addition/add01srg_001.html" title="100 Single-Digit Addition Questions With Some Regrouping"><figure><img src="addition/images/add01srg_001_300.1675735206.jpg" alt="100 Single-Digit Addition Questions With Some Regrouping" loading="lazy" width="250" height="324"><figcaption>100 Single-Digit Addition Questions With Some Regrouping (<strong>9600 views this week</strong>)</figcaption></figure></a>
<a href="addition/addition_2digit_someregrouping_001.html" title="2-Digit Plus 2-Digit Addition With Some Regrouping (25 Questions)"><figure><img src="addition/images/addition_2digit_someregrouping_001_300.1675735207.jpg" alt="2-Digit Plus 2-Digit Addition With Some Regrouping (25 Questions)" loading="lazy" width="250" height="324"><figcaption>2-Digit Plus 2-Digit Addition With Some Regrouping (25 Questions) (<strong>8350 views this week</strong>)</figcaption></figure></a>
<a href="addition/addition_3digit_3digit_001.html" title="3-Digit Plus 3-Digit Addition With Some Regrouping (25 Questions)"><figure><img src="addition/images/addition_3digit_3digit_001_300.1675735207.jpg" alt="3-Digit Plus 3-Digit Addition With Some Regrouping (25 Questions)" loading="lazy" width="250" height="324"><figcaption>3-Digit Plus 3-Digit Addition With Some Regrouping (25 Questions) (<strong>3818 views this week</strong>)</figcaption></figure></a>
<a href="addition/addition_4digit_4digit_001.html" title="4-Digit Plus 4-Digit Addition With Some Regrouping (25 Questions)"><figure><img src="addition/images/addition_4digit_4digit_001_300.1675735207.jpg" alt="4-Digit Plus 4-Digit Addition With Some Regrouping (25 Questions)" loading="lazy" width="250" height="324"><figcaption>4-Digit Plus 4-Digit Addition With Some Regrouping (25 Questions) (<strong>1873 views this week</strong>)</figcaption></figure></a>
<a href="addition/addition_2digit_noregrouping_001.html" title="Two-Digit Addition With No Regrouping – 25 Questions"><figure><img src="addition/images/addition_2digit_noregrouping_001_300.1711038203.jpg" alt="Two-Digit Addition With No Regrouping – 25 Questions" loading="lazy" width="250" height="324"><figcaption>Two-Digit Addition With No Regrouping – 25 Questions (<strong>1653 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="addition-tables">Addition Facts Tables</h2>
</div>
<div class="imagearea">
<img src="addition/images/add_table_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Disputably not a great way to learn addition facts, but undeniably a great way to summarize, addition facts tables are an invaluable resource in any home or school classroom. Addition works very well as a table since the addends can be sequential. Encourage students to look for patterns and teach them a variety of strategies to learn the addition facts. For students who have not yet memorized their addition facts but need to know them for a more advanced math lesson such as adding two-digit numbers, provide an addition facts table to them, so they can quickly look up addition facts. After a while, they will most likely learn the facts through the use of the table and become less reliant on it. To make the tables more durable, print them on card stock and laminate them. They can be displayed on a screen or enlarged and printed on poster paper for whole class use.</p></li>
<li><input type="checkbox" class="list-checkbox" id="addition-tables-1"><label for="addition-tables-1" class="wtitle">Addition Facts in One Square Table</label>
<div class="desc">
<a href="addition/add_table.html" class="">Addition Facts Table 1 to 10 (Filled In)</a>
<a href="addition/add_table_blank.html" class="">Addition Facts Table 1 to 10 (Blank)</a>
<a href="addition/add_table0.html" class="">Addition Facts Table 0 to 9 (Filled In)</a>
<a href="addition/add_table_blank0.html" class="">Addition Facts Table 0 to 9 (Blank)</a>
<a href="addition/add_table_left.html" class="">Left-Handed Addition Facts Table</a>
<a href="addition/add_table_blank_left.html" class="">Left-Handed Blank Addition Facts Table</a>
<a href="addition/addition_facts_tables.html" class="">All Addition Facts Tables</a>
<a href="addition/add_table_individual_facts.html" class="">Addition Facts Tables With One Fact at a time highlighted</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="addition-tables-2"><label for="addition-tables-2" class="wtitle">Addition Facts in Separate Tables</label>
<div class="desc">
<a href="addition/addition_facts_tables_01_to_12_gray.html" class="">Single Addition Facts Tables in Gray 1 to 12</a>
<a href="addition/addition_facts_tables_01_to_12_color.html" class="">Single Addition Facts Tables in Color 1 to 12</a>
<a href="addition/addition_facts_tables_01_to_12_montessori.html" class="">Single Addition Facts Tables in Montessori Colors 1 to 12</a>
</div>
</li>
</ul>
</div>
</div>
<div class="adwrap">
<!-- Math-Drills-Topic-3 -->
<ins class="adsbygoogle ad1"
data-ad-client="ca-pub-2856036633404156"
data-ad-slot="3346293055"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="five-minute-addition-frenzies">Five Minute Addition Frenzies</h2>
</div>
<div class="imagearea">
<img src="addition/images/addition_five_minute_frenzy1_0110_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Five minute frenzy charts are 10 by 10 grids for addition fact practice. In each square, students write the sum of the column number and the row number.</p></li>
<li><p>Called mad minutes or timed drills by some, five minute frenzies are meant to be timed to add a little more excitement to practicing addition facts. They are ideally used to increase a student's ability to recall addition facts quickly which has all sorts of benefits later in their school life including preventing high school teachers from complaining about "how their students can't even add single-digit numbers without using a calculator."</p></li>
<li><p>A general goal to achieve would be to complete one chart in less than five minutes and score 98 percent or better, however, we recommend setting personal goals for students based on an initial test. If they are banging their head against the wall after a couple of minutes with only a few questions done, they really shouldn't be completing a timed addition facts drill at the moment. They still have some learning to do. We would recommend breaking out the manipulatives at this point. If they blast through the questions in 1.5 minutes and get almost all of them correct, they are probably ready for something a little more challenging.</p></li>
<li><p>One-per-page addition frenzies are not the most efficient use of paper resources, but they are a good starting point especially for younger students who have not quite mastered their penmanship enough to fit their numbers into a smaller chart. They are also great for displaying on screens or monitors for group activities. For example, you might use an interactive white board to fill out the chart.</p></li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-addition-frenzies-3"><label for="five-minute-addition-frenzies-3" class="wtitle">Five Minute Addition Frenzies</label>
<div class="desc">
<a href="addition/addition_five_minute_frenzy1_0110_001.html" class="">Addition Frenzy (<strong>1 to 10</strong>)</a>
<a href="addition/addition_five_minute_frenzy1_1120_001.html" class="">Addition Frenzy (<strong>11 to 20</strong>)</a>
<a href="addition/addition_five_minute_frenzy1_2150_001.html" class="">Addition Frenzy (<strong>21 to 50</strong>)</a>
<a href="addition/addition_five_minute_frenzy1_51100_001.html" class="">Addition Frenzy (<strong>51 to 100</strong>)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-addition-frenzies-4"><label for="five-minute-addition-frenzies-4" class="wtitle">Left-handed Five Minute Addition Frenzies</label>
<div class="desc">
<a href="addition/addition_five_minute_frenzy1_0110_left_001.html" class=""><strong>Left-handed</strong> Addition Frenzy (<strong>1 to 10</strong>)</a>
<a href="addition/addition_five_minute_frenzy1_1120_left_001.html" class=""><strong>Left-handed</strong> Addition Frenzy (<strong>11 to 20</strong>)</a>
<a href="addition/addition_five_minute_frenzy1_2150_left_001.html" class=""><strong>Left-handed</strong> Addition Frenzy (<strong>21 to 50</strong>)</a>
<a href="addition/addition_five_minute_frenzy1_51100_left_001.html" class=""><strong>Left-handed</strong> Addition Frenzy (<strong>51 to 100</strong>)</a>
</div>
</li>
<li><p>A wiser use of paper and photo-copy limits, having four charts on a page allows for multi-day practice, collaborative work or through the use of a paper-cutter, a quick stack of practice pages for students who finish early.</p></li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-addition-frenzies-5"><label for="five-minute-addition-frenzies-5" class="wtitle">Five Minute Addition Frenzies (Four Per Page)</label>
<div class="desc">
<a href="addition/addition_five_minute_frenzy_0110_001.html" class="">Four Addition Frenzies (<strong>1 to 10</strong>)</a>
<a href="addition/addition_five_minute_frenzy_1120_001.html" class="">Four Addition Frenzies (<strong>11 to 20</strong>)</a>
<a href="addition/addition_five_minute_frenzy_2150_001.html" class="">Four Addition Frenzies (<strong>21 to 50</strong>)</a>
<a href="addition/addition_five_minute_frenzy_51100_001.html" class="">Four Addition Frenzies (<strong>51 to 100</strong>)</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="five-minute-addition-frenzies-6"><label for="five-minute-addition-frenzies-6" class="wtitle">Left-handed Five Minute Addition Frenzies (Four Per Page)</label>
<div class="desc">
<a href="addition/addition_five_minute_frenzy_0110_left_001.html" class=""><strong>Left-handed</strong> Four Addition Charts Per Page (<strong>1 to 10</strong>)</a>
<a href="addition/addition_five_minute_frenzy_1120_left_001.html" class=""><strong>Left-handed</strong> Four Addition Charts Per Page (<strong>11 to 20</strong>)</a>
<a href="addition/addition_five_minute_frenzy_2150_left_001.html" class=""><strong>Left-handed</strong> Four Addition Charts Per Page (<strong>21 to 50</strong>)</a>
<a href="addition/addition_five_minute_frenzy_51100_left_001.html" class=""><strong>Left-handed</strong> Four Addition Charts Per Page (<strong>51 to 100</strong>)</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="single-digit-addition">Single-Digit Addition</h2>
</div>
<div class="imagearea">
<img src="addition/images/add01srg64_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Most people would agree that being able to add single-digit numbers quickly and in your head is an essential skill for success in math. The various addition worksheets in this section focus on skills that students will use their entire life. These worksheets will not magically make a student learn addition, but they are valuable for reinforcement and practice and can also be used as assessment tools.</p></li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-7"><label for="single-digit-addition-7" class="wtitle">Single-Digit Addition with Some Regrouping</label>
<div class="desc">
<a href="addition/add01srg_001.html" class=""><strong>100</strong> Single-Digit Addition Questions with <strong>Some Regrouping</strong> <span class="iedit">✎</span></a>
<a href="addition/add01srg81_001.html" class=""><strong>81</strong> Single-Digit Addition Questions with <strong>Some Regrouping</strong> <span class="iedit">✎</span></a>
<a href="addition/add01srg64_001.html" class=""><strong>64</strong> Single-Digit Addition Questions with <strong>Some Regrouping</strong> <span class="iedit">✎</span></a>
<a href="addition/add01srg50_001.html" class=""><strong>50</strong> Single-Digit Addition Questions with <strong>Some Regrouping</strong> <span class="iedit">✎</span></a>
<a href="addition/add01srg25_001.html" class=""><strong>25</strong> Single-Digit Addition Questions with <strong>Some Regrouping</strong> <span class="iedit">✎</span></a>
<a href="addition/add01srg12_001.html" class=""><strong>12</strong> Single-Digit Addition Questions with <strong>Some Regrouping</strong> <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-8"><label for="single-digit-addition-8" class="wtitle">Single-Digit Addition with No Regrouping</label>
<div class="desc">
<a href="addition/add01nrg_001.html" class=""><strong>100</strong> Single-Digit Addition Questions with <strong>No Regrouping</strong></a>
<a href="addition/add01nrg64_001.html" class=""><strong>64</strong> Single-Digit Addition Questions with <strong>No Regrouping</strong></a>
<a href="addition/add01nrg25_001.html" class=""><strong>25</strong> Single-Digit Addition Questions with <strong>No Regrouping</strong></a>
<a href="addition/add01nrg12_001.html" class=""><strong>12</strong> Single-Digit Addition Questions with <strong>No Regrouping</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-9"><label for="single-digit-addition-9" class="wtitle">Single-Digit Addition with All Regrouping</label>
<div class="desc">
<a href="addition/addition_one_digit_all_regrouping_001.html" class=""><strong>100</strong> Single-Digit Addition Questions with <strong>All Regrouping</strong></a>
<a href="addition/addition_one_digit_all_regrouping64_001.html" class=""><strong>64</strong> Single-Digit Addition Questions with <strong>All Regrouping</strong></a>
<a href="addition/addition_one_digit_all_regrouping25_001.html" class=""><strong>25</strong> Single-Digit Addition Questions with <strong>All Regrouping</strong></a>
<a href="addition/addition_one_digit_all_regrouping12_001.html" class=""><strong>12</strong> Single-Digit Addition Questions with <strong>All Regrouping</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-10"><label for="single-digit-addition-10" class="wtitle">Horizontally Arranged Single-Digit Addition</label>
<div class="desc">
<a href="addition/addition_single_x_someregrouping_100_001.html" class="">Horizontally Arranged Single-Digit Addition Facts (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/add_horiz_one-digit_sregroup50_001.html" class="">Horizontally Arranged Single-Digit Addition Facts (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/numbers_that_add_to_10_001.html" class="">Horizontal Numbers that Add to 10</a>
<a href="addition/addition_upto_05_001.html" class="">Horizontally Arranged Single-Digit Addition Facts up to 5 + 5 (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_upto_06_001.html" class="">Horizontally Arranged Single-Digit Addition Facts up to 6 + 6 (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_upto_07_001.html" class="">Horizontally Arranged Single-Digit Addition Facts up to 7 + 7 (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_upto_08_001.html" class="">Horizontally Arranged Single-Digit Addition Facts up to 8 + 8 (100 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-11"><label for="single-digit-addition-11" class="wtitle">Horizontally Arranged Single-Digit Addition of More than Two Addends</label>
<div class="desc">
<a href="addition/adding_multiple_numbers_1digit_03_addends_001.html" class="">Adding <strong>3</strong> Single-Digit <strong>Numbers Horizontally</strong></a>
<a href="addition/adding_multiple_numbers_1digit_04_addends_001.html" class="">Adding <strong>4</strong> Single-Digit <strong>Numbers Horizontally</strong></a>
<a href="addition/adding_multiple_numbers_1digit_05_addends_001.html" class="">Adding <strong>5</strong> Single-Digit <strong>Numbers Horizontally</strong></a>
<a href="addition/adding_multiple_numbers_1digit_10_addends_001.html" class="">Adding <strong>10</strong> Single-Digit <strong>Numbers Horizontally</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-12"><label for="single-digit-addition-12" class="wtitle">Horizontally Arranged Single-Digit Addition with No Regrouping</label>
<div class="desc">
<a href="addition/addition_single-digit_noregrouping_001.html" class="">Horizontal Addition Facts with No Regrouping 100 per page</a>
<a href="addition/addition_single-digit_noregrouping_nozeros_100_001.html" class="">Horizontal Addition Facts with No Regrouping and No Zeros 100 per page</a>
<a href="addition/add_horiz_one-digit50_001.html" class="">Horizontal Addition Facts with No Regrouping 50 per page</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-13"><label for="single-digit-addition-13" class="wtitle">Horizontally Arranged Single-Digit Addition with All Regrouping</label>
<div class="desc">
<a href="addition/addition_single-digit_allregrouping_001.html" class="">Horizontal Addition Facts with All Regrouping 100 per page</a>
<a href="addition/add_horiz_one-digit_regroup50_001.html" class="">Horizontal Addition Facts with All Regrouping 50 per page</a>
</div>
</li>
<li><p>The make ten addition strategy involves "spliting" the second addend into two parts. The first part combines with the first addend to make ten and the second part is the leftover amount. The strategy helps students quickly add amounts over ten in their head. For example, adding 8 + 7, students first recognize that they need to add 2 to 8 to get 10, so they split the 7 into 2 + 5. The 8 + 2 makes 10 and 5 more makes 15. The skill can be extended to many situations, for example adding 24 + 9, students recognize that they need 6 more to get to 30 and 9 can be split into 6 + 3, so 24 + 6 = 30 and 3 more makes 33. Continuing on, students can work on recognizing "complements" of other important numbers (see section further down) to develop this strategy further.</p></li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-14"><label for="single-digit-addition-14" class="wtitle">Make 10 Addition Strategy</label>
<div class="desc">
<a href="addition/addition_make_ten_strategy_001.html" class="">Make <strong>10</strong> Addition Strategy</a>
<a href="addition/addition_make_ten_strategy_blank.html" class="">Make <strong>10</strong> Addition Strategy Blanks</a>
<a href="addition/addition_make_20_strategy_001.html" class="">Make <strong>20</strong> Addition Strategy</a>
<a href="addition/addition_make_30_strategy_001.html" class="">Make <strong>30</strong> Addition Strategy</a>
<a href="addition/addition_make_40_strategy_001.html" class="">Make <strong>40</strong> Addition Strategy</a>
<a href="addition/addition_make_50_strategy_001.html" class="">Make <strong>50</strong> Addition Strategy</a>
<a href="addition/addition_make_60_strategy_001.html" class="">Make <strong>60</strong> Addition Strategy</a>
<a href="addition/addition_make_70_strategy_001.html" class="">Make <strong>70</strong> Addition Strategy</a>
<a href="addition/addition_make_80_strategy_001.html" class="">Make <strong>80</strong> Addition Strategy</a>
<a href="addition/addition_make_90_strategy_001.html" class="">Make <strong>90</strong> Addition Strategy</a>
<a href="addition/addition_make_multiples_of_10_strategy_001.html" class="">Make <strong>Multiples of 10</strong> Addition Strategy</a>
</div>
</li>
<li><p>Focusing on one number at a time is necessary for some students. Maybe they get overwhelmed with too much information and need to experience success in small steps.</p></li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-15"><label for="single-digit-addition-15" class="wtitle">Adding Focus or Target Facts (50 Questions)</label>
<div class="desc">
<a href="addition/addition_one_digit_0_001.html" class="">Adding <strong>0</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_1_001.html" class="">Adding <strong>1</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_2_001.html" class="">Adding <strong>2</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_1or2_001.html" class="">Adding <strong>1 or 2</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_3_001.html" class="">Adding <strong>3</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_4_001.html" class="">Adding <strong>4</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_5_001.html" class="">Adding <strong>5</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_6_001.html" class="">Adding <strong>6</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_7_001.html" class="">Adding <strong>7</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_8_001.html" class="">Adding <strong>8</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_one_digit_9_001.html" class="">Adding <strong>9</strong> to Single-Digit Numbers (50 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-16"><label for="single-digit-addition-16" class="wtitle">Adding Focus or Target Facts (25 Large Print Questions)</label>
<div class="desc">
<a href="addition/addition_25_one_digit_0_001.html" class="">Adding <strong>0</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_1_001.html" class="">Adding <strong>1</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_2_001.html" class="">Adding <strong>2</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_3_001.html" class="">Adding <strong>3</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_4_001.html" class="">Adding <strong>4</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_5_001.html" class="">Adding <strong>5</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_6_001.html" class="">Adding <strong>6</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_7_001.html" class="">Adding <strong>7</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_8_001.html" class="">Adding <strong>8</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_25_one_digit_9_001.html" class="">Adding <strong>9</strong> to Single-Digit Numbers (25 Large Print Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-17"><label for="single-digit-addition-17" class="wtitle">Adding Focus or Target Facts (25 Questions) with Sums Limited to 12</label>
<div class="desc">
<a href="addition/addition_sums_to_012_focus_digit_01_v25_001.html" class="">Adding <strong>1</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_02_v25_001.html" class="">Adding <strong>2</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_03_v25_001.html" class="">Adding <strong>3</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_04_v25_001.html" class="">Adding <strong>4</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_05_v25_001.html" class="">Adding <strong>5</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_06_v25_001.html" class="">Adding <strong>6</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_07_v25_001.html" class="">Adding <strong>7</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_08_v25_001.html" class="">Adding <strong>8</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_sums_to_012_focus_digit_09_v25_001.html" class="">Adding <strong>9</strong> to Single-Digit Numbers With <strong>Sums Limited to 12</strong> (25 Large Print Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="single-digit-addition-18"><label for="single-digit-addition-18" class="wtitle">Horizontally-Arranged Adding Focus or Target Facts</label>
<div class="desc">
<a href="addition/addition_single_01_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>1s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_02_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>2s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/adding_ones_and_twos_001.html" class=""><strong>50</strong> Adding <strong>1s and 2s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_03_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>3s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_04_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>4s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_05_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>5s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_06_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>6s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_07_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>7s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_08_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>8s</strong> to Single-Digit Numbers Questions</a>
<a href="addition/addition_single_09_001.html" class=""><strong>100 Horizontal</strong> Adding <strong>9s</strong> to Single-Digit Numbers Questions</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multi-digit-addition">Multi-Digit Addition</h2>
</div>
<div class="imagearea">
<img src="addition/images/addition_4digit_3digit_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>A variety of strategies can be used to learn multi-digit addition; it isn't necessary to rely only on paper and pencil methods. Base ten blocks can help students conceptualize addition. Teaching students a mental left-to-right addition skill will help them in future math studies and life in general. E.g. 34 + 78 would be 30 + 70 = 100, 100 + 4 = 104, 104 + 8 = 112. Don't forget about using estimation with these worksheets.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-19"><label for="multi-digit-addition-19" class="wtitle">Multi-Digit Addition with Some Regrouping</label>
<div class="desc">
<a href="addition/addition_2digit_1digit_someregrouping_001.html" class=""><strong>2-Digit plus 1-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_2digit_1digit_36_001.html" class=""><strong>2-Digit Plus 1-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add020164_001.html" class=""><strong>2-Digit plus 1-Digit</strong> Addition (64 Questions) <span class="iedit">✎</span></a>
<a href="addition/add0201_001.html" class=""><strong>2-Digit plus 1-Digit</strong> Addition (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_2digit_1digit_someregrouping_sumslessthan100_001.html" class=""><strong>2-Digit plus 1-Digit</strong> Addition (<strong>Sums Less Than 100</strong>) (25 Questions)</a>
<a href="addition/addition_2digit_someregrouping_001.html" class=""><strong>2-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_2digit_someregrouping_36_001.html" class=""><strong>2-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add02srg64_001.html" class=""><strong>2-Digit</strong> Addition (64 Questions) <span class="iedit">✎</span></a>
<a href="addition/add02srg_001.html" class=""><strong>2-Digit</strong> Addition (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_1digit_001.html" class=""><strong>3-Digit Plus 1-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_1digit_36_001.html" class=""><strong>3-Digit Plus 1-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_2digit_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_2digit_36_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add030249_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition (49 Questions) <span class="iedit">✎</span></a>
<a href="addition/add0302_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_3digit_001.html" class=""><strong>3-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_36_001.html" class=""><strong>3-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add030349_001.html" class=""><strong>3-Digit</strong> Addition (49 Questions) <span class="iedit">✎</span></a>
<a href="addition/add0303_001.html" class=""><strong>3-Digit</strong> Addition (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_1digit_001.html" class=""><strong>4-Digit Plus 1-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_1digit_36_001.html" class=""><strong>4-Digit Plus 1-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_2digit_001.html" class=""><strong>4-Digit Plus 2-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_2digit_36_001.html" class=""><strong>4-Digit Plus 2-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_3digit_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_3digit_36_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add040349_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition (49 Questions) <span class="iedit">✎</span></a>
<a href="addition/add0403_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_4digit_001.html" class=""><strong>4-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_36_001.html" class=""><strong>4-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add040449_001.html" class=""><strong>4-Digit</strong> Addition (49 Questions) <span class="iedit">✎</span></a>
<a href="addition/add0404_001.html" class=""><strong>4-Digit</strong> Addition (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_5digit_5digit_001.html" class=""><strong>5-Digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_variousdigit_0204_001.html" class=""><strong>Various 2-digit to 4-digit</strong> Addition (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_variousdigit_0204_36_001.html" class=""><strong>Various 2-Digit to 4-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_variousdigit_0205_001.html" class=""><strong>Various 2-digit to 5-digit</strong> Addition (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_variousdigit_0205_36_001.html" class=""><strong>Various 2-Digit to 5-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_variousdigit_0305_001.html" class=""><strong>Various 3-digit to 5-digit</strong> Addition (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_variousdigit_0305_36_001.html" class=""><strong>Various 3-Digit to 5-Digit</strong> Addition (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_6digit_6digit_001.html" class=""><strong>6-Digit</strong> Addition (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_7digit_7digit_001.html" class=""><strong>7-Digit</strong> Addition (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_8digit_8digit_001.html" class=""><strong>8-Digit</strong> Addition (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_9digit_9digit_001.html" class=""><strong>9-Digit</strong> Addition (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_expanded_form_3digit_3digit_001.html" class=""><strong>3-Digit Expanded Form</strong> Addition</a>
</div>
</li>
<li><p>Regrouping is what long addition is all about; these worksheets give students a lot of practice since every step requires regrouping.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-20"><label for="multi-digit-addition-20" class="wtitle">Multi-Digit Addition with All Regrouping</label>
<div class="desc">
<a href="addition/addition_2digit_1digit_regrouping_001.html" class=""><strong>2-Digit Plus 1-Digit</strong> Addition with ALL Regrouping in the Ones Place (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_2digit_regrouping_001.html" class=""><strong>2-Digit</strong> Addition with ALL Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/add_two-digit_all_regrouping_001.html" class=""><strong>2-Digit</strong> Addition with ALL Regrouping (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_3digit_001.html" class=""><strong>3-Digit</strong> Addition with ALL Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_4digit_001.html" class=""><strong>4-Digit</strong> Addition with ALL Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_5digit_001.html" class=""><strong>5-Digit</strong> Addition with ALL Regrouping (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_6digit_001.html" class=""><strong>6-Digit</strong> Addition with ALL Regrouping (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_7digit_001.html" class=""><strong>7-Digit</strong> Addition with ALL Regrouping (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_8digit_001.html" class=""><strong>8-Digit</strong> Addition with ALL Regrouping (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_all_regrouping_9digit_001.html" class=""><strong>9-Digit</strong> Addition with ALL Regrouping (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>If you haven't quite mastered all the addition facts or the long addition algorithm, these might be the worksheets for you. These worksheets don't require any regrouping, so they provide an extra in-between skill for students who require a little more guidance.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-21"><label for="multi-digit-addition-21" class="wtitle">Multi-Digit Addition with No Regrouping</label>
<div class="desc">
<a href="addition/addition_2digit_1digit_noregrouping_001.html" class=""><strong>2-Digit Plus 1-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_2digit_noregrouping_001.html" class=""><strong>2-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_2digit_noregrouping_36_001.html" class=""><strong>2-Digit</strong> Addition with NO Regrouping (36 Questions) <span class="iedit">✎</span></a>
<a href="addition/add02nrg64_001.html" class=""><strong>2-Digit</strong> Addition with NO Regrouping (64 Questions) <span class="iedit">✎</span></a>
<a href="addition/add02nrg_001.html" class=""><strong>2-Digit</strong> Addition with NO Regrouping (100 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_1digit_noregrouping_001.html" class=""><strong>3-Digit Plus 1-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_2digit_noregrouping_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_3digit_3digit_noregrouping_001.html" class=""><strong>3-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_1digit_noregrouping_001.html" class=""><strong>4-Digit Plus 1-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_2digit_noregrouping_001.html" class=""><strong>4-Digit Plus 2-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_3digit_noregrouping_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_4digit_4digit_noregrouping_001.html" class=""><strong>4-Digit</strong> Addition with NO Regrouping (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_5digit_5digit_noregrouping_001.html" class=""><strong>5-Digit</strong> Addition with NO Regrouping (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_6digit_6digit_noregrouping_001.html" class=""><strong>6-Digit</strong> Addition with NO Regrouping (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_7digit_7digit_noregrouping_001.html" class=""><strong>7-Digit</strong> Addition with NO Regrouping (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_8digit_8digit_noregrouping_001.html" class=""><strong>8-Digit</strong> Addition with NO Regrouping (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_9digit_9digit_noregrouping_001.html" class=""><strong>9-Digit</strong> Addition with NO Regrouping (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Horizontal addition can encourage students to use mental math or other strategies to add numbers. One of the most common mental math strategies for addition is a left-to-right (also called front end) addition strategy. This involves adding the greater place values first. Other strategies for adding multi-digit numbers include using base ten blocks or other manipulatives, number lines, decomposing numbers and adding the parts, and using a calculator.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-22"><label for="multi-digit-addition-22" class="wtitle">Horizontally Arranged Multi-Digit Addition</label>
<div class="desc">
<a href="addition/addition_to_20_second_addend_greater_001.html" class="">Adding to 20 with the <strong>Second Addend Greater</strong></a>
<a href="addition/addition_horizontal_2digit_noregrouping_001.html" class=""><strong>2-Digit Plus 2-Digit</strong> Horizontal Addition with <strong>no Regrouping</strong></a>
<a href="addition/addition_horizontal_2digit_someregrouping_001.html" class="">Horizontally Arranged <strong>2-Digit Plus 2-Digit</strong> Addition <span class="iedit">✎</span></a>
<a href="addition/addition_horizontal_3digit_plus_2digit_001.html" class="">Horizontally Arranged <strong>3-Digit Plus 2-Digit</strong> Addition <span class="iedit">✎</span></a>
<a href="addition/addition_horizontal_3digit_plus_3digit_001.html" class="">Horizontally Arranged <strong>3-Digit Plus 3-Digit</strong> Addition <span class="iedit">✎</span></a>
<a href="addition/addition_horizontal_23digit_plus_23digit_001.html" class="">Horizontally Arranged <strong>Various 2- and 3-Digit</strong> Addition <span class="iedit">✎</span></a>
<a href="addition/addition_horizontal_4digit_plus_3digit_001.html" class="">Horizontally Arranged <strong>4-Digit Plus 3-Digit</strong> Addition <span class="iedit">✎</span></a>
<a href="addition/addition_horizontal_4digit_plus_4digit_001.html" class="">Horizontally Arranged <strong>4-Digit Plus 4-Digit</strong> Addition <span class="iedit">✎</span></a>
<a href="addition/addition_horizontal_24digit_plus_24digit_001.html" class="">Horizontally Arranged <strong>Various 2- to 4-Digit</strong> Addition <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-23"><label for="multi-digit-addition-23" class="wtitle">Horizontally Arranged Multi-Digit Addition of More Than Two Addends</label>
<div class="desc">
<a href="addition/adding_multiple_numbers_2digit_03_addends_001.html" class="">Adding <strong>3</strong> Two-Digit <strong>Numbers Horizontally</strong></a>
<a href="addition/adding_multiple_numbers_2digit_04_addends_001.html" class="">Adding <strong>4</strong> Two-Digit <strong>Numbers Horizontally</strong></a>
<a href="addition/adding_multiple_numbers_2digit_05_addends_001.html" class="">Adding <strong>5</strong> Two-Digit <strong>Numbers Horizontally</strong></a>
<a href="addition/adding_multiple_numbers_2digit_10_addends_001.html" class="">Adding <strong>10</strong> Two-Digit <strong>Numbers Horizontally</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-24"><label for="multi-digit-addition-24" class="wtitle">Adding Focus or Target Facts Greater Than 9</label>
<div class="desc">
<a href="addition/addition_focus_10_v25_001.html" class="">25 <strong>Adding 10s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_10_v50_001.html" class="">50 <strong>Adding 10s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_11_v50_001.html" class="">50 <strong>Adding 11s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_12_v50_001.html" class="">50 <strong>Adding 12s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_13_v50_001.html" class="">50 <strong>Adding 13s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_14_v50_001.html" class="">50 <strong>Adding 14s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_15_v50_001.html" class="">50 <strong>Adding 15s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_16_v50_001.html" class="">50 <strong>Adding 16s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_17_v50_001.html" class="">50 <strong>Adding 17s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_18_v50_001.html" class="">50 <strong>Adding 18s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_19_v50_001.html" class="">50 <strong>Adding 19s</strong> Questions <span class="iedit">✎</span></a>
<a href="addition/addition_focus_20_v50_001.html" class="">50 <strong>Adding 20s</strong> Questions <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Using a comma to separate thousands is the most common way to format large numbers in the English world. </p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-25"><label for="multi-digit-addition-25" class="wtitle">Multi-Digit Addition with Some Regrouping (Comma-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_comma_separated_some_regrouping_4digit_plus_4digit_001.html" class=""> Adding <strong>4-Digit</strong> Numbers (Comma Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_some_regrouping_5digit_plus_5digit_001.html" class=""> Adding <strong>5-Digit</strong> Numbers (Comma Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_some_regrouping_6digit_plus_6digit_001.html" class=""> Adding <strong>6-Digit</strong> Numbers (Comma Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_some_regrouping_7digit_plus_7digit_001.html" class=""> Adding <strong>7-Digit</strong> Numbers (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_some_regrouping_8digit_plus_8digit_001.html" class=""> Adding <strong>8-Digit</strong> Numbers (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_some_regrouping_9digit_plus_9digit_001.html" class=""> Adding <strong>9-Digit</strong> Numbers (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-26"><label for="multi-digit-addition-26" class="wtitle">Multi-Digit Addition with All Regrouping (Comma-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_comma_separated_all_regrouping_4digit_plus_4digit_001.html" class=""> Adding <strong>4-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Comma Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_all_regrouping_5digit_plus_5digit_001.html" class=""> Adding <strong>5-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Comma Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_all_regrouping_6digit_plus_6digit_001.html" class=""> Adding <strong>6-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Comma Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_all_regrouping_7digit_plus_7digit_001.html" class=""> Adding <strong>7-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_all_regrouping_8digit_plus_8digit_001.html" class=""> Adding <strong>8-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_all_regrouping_9digit_plus_9digit_001.html" class=""> Adding <strong>9-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-27"><label for="multi-digit-addition-27" class="wtitle">Multi-Digit Addition with No Regrouping (Comma-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_comma_separated_no_regrouping_4digit_plus_4digit_001.html" class=""> Adding <strong>4-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Comma Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_no_regrouping_5digit_plus_5digit_001.html" class=""> Adding <strong>5-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Comma Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_no_regrouping_6digit_plus_6digit_001.html" class=""> Adding <strong>6-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Comma Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_no_regrouping_7digit_plus_7digit_001.html" class=""> Adding <strong>7-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_no_regrouping_8digit_plus_8digit_001.html" class=""> Adding <strong>8-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_comma_separated_no_regrouping_9digit_plus_9digit_001.html" class=""> Adding <strong>9-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Comma Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Using a space to separate thousands in large numbers is common in some languages. In the English world, you will most likely find Canadians formatting their numbers in this way.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-28"><label for="multi-digit-addition-28" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-can"></use></svg> Multi-Digit Addition with Some Regrouping (Space-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_space_separated_some_regrouping_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers (Space Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_some_regrouping_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers (Space Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_some_regrouping_6digit_plus_6digit_001.html" class="">Adding <strong>6-Digit</strong> Numbers (Space Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_some_regrouping_7digit_plus_7digit_001.html" class="">Adding <strong>7-Digit</strong> Numbers (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_some_regrouping_8digit_plus_8digit_001.html" class="">Adding <strong>8-Digit</strong> Numbers (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_some_regrouping_9digit_plus_9digit_001.html" class="">Adding <strong>9-Digit</strong> Numbers (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-29"><label for="multi-digit-addition-29" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-can"></use></svg> Multi-Digit Addition with All Regrouping (Space-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_space_separated_all_regrouping_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Space Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_all_regrouping_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Space Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_all_regrouping_6digit_plus_6digit_001.html" class="">Adding <strong>6-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Space Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_all_regrouping_7digit_plus_7digit_001.html" class="">Adding <strong>7-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_all_regrouping_8digit_plus_8digit_001.html" class="">Adding <strong>8-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_all_regrouping_9digit_plus_9digit_001.html" class="">Adding <strong>9-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-30"><label for="multi-digit-addition-30" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-can"></use></svg> Multi-Digit Addition with No Regrouping (Space-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_space_separated_no_regrouping_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Space Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_no_regrouping_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Space Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_no_regrouping_6digit_plus_6digit_001.html" class="">Adding <strong>6-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Space Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_no_regrouping_7digit_plus_7digit_001.html" class="">Adding <strong>7-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_no_regrouping_8digit_plus_8digit_001.html" class="">Adding <strong>8-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_space_separated_no_regrouping_9digit_plus_9digit_001.html" class="">Adding <strong>9-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Space Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>Using a period as a thousands separator is not generally seen in English-speaking countries, but since there are people from around the world who use these addition worksheets, they are included.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-31"><label for="multi-digit-addition-31" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-eu"></use></svg> Multi-Digit Addition with Some Regrouping (Period-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_period_separated_some_regrouping_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers (Period Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_some_regrouping_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers (Period Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_some_regrouping_6digit_plus_6digit_001.html" class="">Adding <strong>6-Digit</strong> Numbers (Period Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_some_regrouping_7digit_plus_7digit_001.html" class="">Adding <strong>7-Digit</strong> Numbers (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_some_regrouping_8digit_plus_8digit_001.html" class="">Adding <strong>8-Digit</strong> Numbers (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_some_regrouping_9digit_plus_9digit_001.html" class="">Adding <strong>9-Digit</strong> Numbers (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-32"><label for="multi-digit-addition-32" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-eu"></use></svg> Multi-Digit Addition with All Regrouping (Period-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_period_separated_all_regrouping_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Period Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_all_regrouping_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Period Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_all_regrouping_6digit_plus_6digit_001.html" class="">Adding <strong>6-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Period Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_all_regrouping_7digit_plus_7digit_001.html" class="">Adding <strong>7-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_all_regrouping_8digit_plus_8digit_001.html" class="">Adding <strong>8-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_all_regrouping_9digit_plus_9digit_001.html" class="">Adding <strong>9-Digit</strong> Numbers with <strong>ALL Regrouping</strong> (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-33"><label for="multi-digit-addition-33" class="wtitle"><svg class="size32"><use xlink:href="includes/symbol-defs.006.svg#flag-eu"></use></svg> Multi-Digit Addition with No Regrouping (Period-Separated Thousands)</label>
<div class="desc">
<a href="addition/addition_period_separated_no_regrouping_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Period Separated) (25 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_no_regrouping_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Period Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_no_regrouping_6digit_plus_6digit_001.html" class="">Adding <strong>6-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Period Separated) (20 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_no_regrouping_7digit_plus_7digit_001.html" class="">Adding <strong>7-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_no_regrouping_8digit_plus_8digit_001.html" class="">Adding <strong>8-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
<a href="addition/addition_period_separated_no_regrouping_9digit_plus_9digit_001.html" class="">Adding <strong>9-Digit</strong> Numbers with <strong>NO Regrouping</strong> (Period Separated) (15 Questions) <span class="iedit">✎</span></a>
</div>
</li>
<li><p>For various reasons, sometimes you need addition questions in a larger font. These should fit the bill.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-34"><label for="multi-digit-addition-34" class="wtitle">Large Print Multi-Digit Addition with Some Regrouping</label>
<div class="desc">
<a href="addition/large_print_addition_some_regrouping_2digit_plus_1digit_001.html" class=""><strong>2-digit Plus 1-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_3digit_plus_1digit_001.html" class=""><strong>3-digit Plus 1-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_4digit_plus_1digit_001.html" class=""><strong>4-digit Plus 1-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_various_plus_1digit_001.html" class=""><strong>Various Plus 1-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_2digit_plus_2digit_001.html" class=""><strong>2-digit Plus 2-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_3digit_plus_2digit_001.html" class=""><strong>3-digit Plus 2-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_4digit_plus_2digit_001.html" class=""><strong>4-digit Plus 2-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_various_plus_2digit_001.html" class=""><strong>Various Plus 2-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_3digit_plus_3digit_001.html" class=""><strong>3-digit Plus 3-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_4digit_plus_3digit_001.html" class=""><strong>4-digit Plus 3-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_4digit_plus_4digit_001.html" class=""><strong>4-digit Plus 4-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_5digit_plus_5digit_001.html" class=""><strong>5-digit Plus 5-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (12 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_some_regrouping_6digit_plus_6digit_001.html" class=""><strong>6-digit Plus 6-digit</strong> Addition with <strong>SOME</strong> Regrouping (Large Print) (12 Questions)<span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-35"><label for="multi-digit-addition-35" class="wtitle">Very Large Print Multi-Digit Addition with Some Regrouping</label>
<div class="desc">
<a href="addition/addition_0201_09_001.html" class=""><strong>2-Digit Plus 1-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0202_09_001.html" class=""><strong>2-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0301_09_001.html" class=""><strong>3-Digit Plus 1-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0302_09_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0303_09_001.html" class=""><strong>3-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0401_09_001.html" class=""><strong>4-Digit Plus 1-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0402_09_001.html" class=""><strong>4-Digit Plus 2-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0403_09_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_0404_06_001.html" class=""><strong>4-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
<a href="addition/addition_various_09_001.html" class=""><strong>Various 2- to 4-Digit</strong> Addition with <strong>SOME</strong> Regrouping (Very Large Print) (9 Questions)<span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-36"><label for="multi-digit-addition-36" class="wtitle">Large Print Multi-Digit Addition with All Regrouping</label>
<div class="desc">
<a href="addition/large_print_addition_all_regrouping_2digit_plus_2digit_001.html" class=""><strong>2-Digit</strong> Addition with <strong>ALL</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_all_regrouping_3digit_plus_3digit_001.html" class=""><strong>3-Digit</strong> Addition with <strong>ALL</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_all_regrouping_4digit_plus_4digit_001.html" class=""><strong>4-Digit</strong> Addition with <strong>ALL</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_all_regrouping_5digit_plus_5digit_001.html" class=""><strong>5-Digit</strong> Addition with <strong>ALL</strong> Regrouping (Large Print) (12 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_all_regrouping_6digit_plus_6digit_001.html" class=""><strong>6-Digit</strong> Addition with <strong>ALL</strong> Regrouping (Large Print) (12 Questions)<span class="iedit">✎</span></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-37"><label for="multi-digit-addition-37" class="wtitle">Large Print Multi-Digit Addition with No Regrouping</label>
<div class="desc">
<a href="addition/large_print_addition_no_regrouping_2digit_plus_2digit_001.html" class=""><strong>2-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_no_regrouping_3digit_plus_2digit_001.html" class=""><strong>3-Digit Plus 2-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_no_regrouping_3digit_plus_3digit_001.html" class=""><strong>3-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_no_regrouping_4digit_plus_3digit_001.html" class=""><strong>4-Digit Plus 3-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_no_regrouping_4digit_plus_4digit_001.html" class=""><strong>4-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (16 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_no_regrouping_5digit_plus_5digit_001.html" class=""><strong>5-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (12 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_no_regrouping_6digit_plus_6digit_001.html" class=""><strong>6-Digit</strong> Addition with <strong>NO</strong> Regrouping (Large Print) (12 Questions)<span class="iedit">✎</span></a>
<a href="addition/large_print_addition_maximum_sum_99_25_001.html" class="">LP <strong>2-Digit</strong> Addition with <strong>Sums up to 99</strong> (<strong>25 Questions</strong>)</a>
<a href="addition/large_print_addition_maximum_sum_99_12_001.html" class="">LP <strong>2-Digit</strong> Addition with <strong>Sums up to 99</strong> (<strong>12 Questions</strong>)</a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="multi-digit-addition-with-grid-support">Multi-Digit Addition with Grid Support</h2>
</div>
<div class="imagearea">
<img src="addition/images/addition_grid_support_4digit_plus_3digit_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Adding with grid support helps students who have trouble lining up place values themselves. Perhaps with a little practice, they might get a better understanding of not only lining up the place values, but why this is done. Pointing out that the 5 in 659 means 50, for example, is useful in helping students understand place value as it relates to addition.</p></li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-with-grid-support-38"><label for="multi-digit-addition-with-grid-support-38" class="wtitle">Adding 2 Addends With Grid Support</label>
<div class="desc">
<a href="addition/addition_grid_support_2digit_plus_2digit_001.html" class="">Adding <strong>2-Digit + 2-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_3digit_plus_3digit_001.html" class="">Adding <strong>3-Digit + 3-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_3digit_plus_2digit_001.html" class="">Adding <strong>3-Digit + 2-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit + 4-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_4digit_plus_3digit_001.html" class="">Adding <strong>4-Digit + 3-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_4digit_plus_2digit_001.html" class="">Adding <strong>4-Digit + 2-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit + 5-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_5digit_plus_4digit_001.html" class="">Adding <strong>5-Digit + 4-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_5digit_plus_3digit_001.html" class="">Adding <strong>5-Digit + 3-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_5digit_plus_2digit_001.html" class="">Adding <strong>5-Digit + 2-Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
<a href="addition/addition_grid_support_various_plus_various_001.html" class="">Adding <strong>Various Digit</strong> Numbers on a Grid <strong>(2 Addends)</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-with-grid-support-39"><label for="multi-digit-addition-with-grid-support-39" class="wtitle">Adding 3 Addends With Grid Support</label>
<div class="desc">
<a href="addition/addition_grid_support_3addends_2digit_plus_2digit_001.html" class="">Adding <strong>2-Digit</strong> Numbers on a Grid <strong>(3 Addends)</strong></a>
<a href="addition/addition_grid_support_3addends_3digit_plus_3digit_001.html" class="">Adding <strong>3-Digit</strong> Numbers on a Grid <strong>(3 Addends)</strong></a>
<a href="addition/addition_grid_support_3addends_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers on a Grid <strong>(3 Addends)</strong></a>
<a href="addition/addition_grid_support_3addends_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers on a Grid <strong>(3 Addends)</strong></a>
<a href="addition/addition_grid_support_3addends_various_plus_various_001.html" class="">Adding <strong>Various-Digit</strong> Numbers on a Grid <strong>(3 Addends)</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-with-grid-support-40"><label for="multi-digit-addition-with-grid-support-40" class="wtitle">Adding 4 Addends With Grid Support</label>
<div class="desc">
<a href="addition/addition_grid_support_4addends_2digit_plus_2digit_001.html" class="">Adding <strong>2-Digit</strong> Numbers on a Grid <strong>(4 Addends)</strong></a>
<a href="addition/addition_grid_support_4addends_3digit_plus_3digit_001.html" class="">Adding <strong>3-Digit</strong> Numbers on a Grid <strong>(4 Addends)</strong></a>
<a href="addition/addition_grid_support_4addends_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers on a Grid <strong>(4 Addends)</strong></a>
<a href="addition/addition_grid_support_4addends_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers on a Grid <strong>(4 Addends)</strong></a>
<a href="addition/addition_grid_support_4addends_various_plus_various_001.html" class="">Adding <strong>Various-Digit</strong> Numbers on a Grid <strong>(4 Addends)</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="multi-digit-addition-with-grid-support-41"><label for="multi-digit-addition-with-grid-support-41" class="wtitle">Adding 5 Addends With Grid Support</label>
<div class="desc">
<a href="addition/addition_grid_support_5addends_2digit_plus_2digit_001.html" class="">Adding <strong>2-Digit</strong> Numbers on a Grid <strong>(5 Addends)</strong></a>
<a href="addition/addition_grid_support_5addends_3digit_plus_3digit_001.html" class="">Adding <strong>3-Digit</strong> Numbers on a Grid <strong>(5 Addends)</strong></a>
<a href="addition/addition_grid_support_5addends_4digit_plus_4digit_001.html" class="">Adding <strong>4-Digit</strong> Numbers on a Grid <strong>(5 Addends)</strong></a>
<a href="addition/addition_grid_support_5addends_5digit_plus_5digit_001.html" class="">Adding <strong>5-Digit</strong> Numbers on a Grid <strong>(5 Addends)</strong></a>
<a href="addition/addition_grid_support_5addends_various_plus_various_001.html" class="">Adding <strong>Various-Digit</strong> Numbers on a Grid <strong>(5 Addends)</strong></a>
</div>
</li>
</ul>
</div>
</div>
<div class="wscontainer bc01">
<div class="titlearea">
<h2 id="various-addition">Various Other Addition Worksheets</h2>
</div>
<div class="imagearea">
<img src="addition/images/addition_column_3digit_4numbers_001_300.004.jpg" alt="" width="250" height="324" loading="lazy">
</div>
<div class="worksheetsarea">
<ul class="list">
<li><p>Column addition is not just an exercise in accounting, it also develops mental addition skills that are useful in everyday life. Various strategies are available for adding columns of numbers. The traditional method is to use a pencil and paper approach, also known as right-to-left addition, where students add and regroup starting with the smallest place (ones in this case) and proceed up to the greatest place. A mental approach might involve students going from left-to-right where the greater place is added first. This is easier to keep track of in your head, but does require the occasional adjustment in previous answers. An example is to add 345 + 678 + 901. First add the 300, 600 and 900 to get 1800, then add 40, 70 and 0 in turn to get 1910, then deal with the 5, 8 and 1 to get 1924. Along the way you had to adjust your total, but keeping a running total in your head is a lot easier than transfering a pencil and paper method into your head.</p></li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-42"><label for="various-addition-42" class="wtitle">Column Addition with Single-Digit Numbers</label>
<div class="desc">
<a href="addition/addition_column_1digit_3numbers_001.html" class="">Adding Three <strong>Single-Digit</strong> Numbers</a>
<a href="addition/addition_column_1digit_4numbers_001.html" class="">Adding Four <strong>Single-Digit</strong> Numbers</a>
<a href="addition/addition_column_1digit_5numbers_001.html" class="">Adding Five <strong>Single-Digit</strong> Numbers</a>
<a href="addition/addition_column_1digit_6numbers_001.html" class="">Adding Six <strong>Single-Digit</strong> Numbers</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-43"><label for="various-addition-43" class="wtitle">Column Addition with Two-Digit Numbers</label>
<div class="desc">
<a href="addition/addition_column_2digit_3numbers_001.html" class="">Adding Three <strong>Two-Digit</strong> Numbers</a>
<a href="addition/addition_column_2digit_4numbers_001.html" class="">Adding Four <strong>Two-Digit</strong> Numbers</a>
<a href="addition/addition_column_2digit_5numbers_001.html" class="">Adding Five <strong>Two-Digit</strong> Numbers</a>
<a href="addition/addition_column_2digit_6numbers_001.html" class="">Adding Six <strong>Two-Digit</strong> Numbers</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-44"><label for="various-addition-44" class="wtitle">Column Addition with Three-Digit Numbers</label>
<div class="desc">
<a href="addition/addition_column_3digit_3numbers_001.html" class="">Adding Three <strong>Three-Digit</strong> Numbers</a>
<a href="addition/addition_column_3digit_4numbers_001.html" class="">Adding Four <strong>Three-Digit</strong> Numbers</a>
<a href="addition/addition_column_3digit_5numbers_001.html" class="">Adding Five <strong>Three-Digit</strong> Numbers</a>
<a href="addition/addition_column_3digit_6numbers_001.html" class="">Adding Six <strong>Three-Digit</strong> Numbers</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-45"><label for="various-addition-45" class="wtitle">Column Addition with Four-Digit Numbers</label>
<div class="desc">
<a href="addition/addition_column_4digit_3numbers_001.html" class="">Adding Three <strong>Four-Digit</strong> Numbers</a>
<a href="addition/addition_column_4digit_4numbers_001.html" class="">Adding Four <strong>Four-Digit</strong> Numbers</a>
<a href="addition/addition_column_4digit_5numbers_001.html" class="">Adding Five <strong>Four-Digit</strong> Numbers</a>
<a href="addition/addition_column_4digit_6numbers_001.html" class="">Adding Six <strong>Four-Digit</strong> Numbers</a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-46"><label for="various-addition-46" class="wtitle">Column Addition with Various-Digit Numbers</label>
<div class="desc">
<a href="addition/addition_column_xdigit_3numbers_001.html" class="">Adding Three <strong>Various-Digit</strong> Numbers</a>
<a href="addition/addition_column_xdigit_4numbers_001.html" class="">Adding Four <strong>Various-Digit</strong> Numbers</a>
<a href="addition/addition_column_xdigit_5numbers_001.html" class="">Adding Five <strong>Various-Digit</strong> Numbers</a>
<a href="addition/addition_column_xdigit_6numbers_001.html" class="">Adding Six <strong>Various-Digit</strong> Numbers</a>
</div>
</li>
<li><p>Games help students develop mental addition skills but in a fun context. For the adding with playing cards worksheets, a Jack is counted as 11, a Queen as 12, a King as 13 and an Ace as 1. Playing math games while enjoying some social time with their friends is a great way to develop strategic thinking and math fluency in children.</p></li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-47"><label for="various-addition-47" class="wtitle">Adding With Games</label>
<div class="desc">
<a href="addition/cards_add_2_001.html" class="">Adding 2 Playing Cards</a>
<a href="addition/cards_add_3_001.html" class="">Adding 3 Playing Cards</a>
<a href="addition/cards_add_4_001.html" class="">Adding 4 Playing Cards</a>
<a href="addition/cards_add_5_001.html" class="">Adding 5 Playing Cards</a>
<a href="addition/cards_add_6_001.html" class="">Adding 6 Playing Cards</a>
<a href="addition/cards_add_7_001.html" class="">Adding 7 Playing Cards</a>
<a href="addition/cards_add_8_001.html" class="">Adding 8 Playing Cards</a>
<a href="addition/cribbage_001.html" class="">Counting Cribbage Hands</a>
<a href="addition/yahtzee_001.html" class="">Identify and Count Yahtzee! Combinations</a>
</div>
</li>
<li><p>Finding complements of numbers can help students a great deal in developing mental arithmetic skills and to further their understanding of number.</p></li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-48"><label for="various-addition-48" class="wtitle">Adding Complements of 9, 99 and 999</label>
<div class="desc">
<a href="addition/addition_complements_0009_001.html" class="">Adding Complements of <strong>9</strong> (Blanks in First <strong>or</strong> Second Position Mixed)</a>
<a href="addition/addition_complements_0009_blank12_001.html" class="">Adding Complements of <strong>9</strong> (Blanks in First <strong>then</strong> Second Position)</a>
<a href="addition/addition_complements_0009_blank1_001.html" class="">Adding Complements of <strong>9</strong> (Blanks in First Position Only)</a>
<a href="addition/addition_complements_0009_blank2_001.html" class="">Adding Complements of <strong>9</strong> (Blanks in Second Position Only)</a>
<a href="addition/addition_complements_0009_blank123_001.html" class="">Adding Complements of <strong>9</strong> (Blanks in Any Position, Including Sums)</a>
<a href="addition/addition_complements_0099_001.html" class="">Adding Complements of <strong>99</strong></a>
<a href="addition/addition_complements_0999_001.html" class="">Adding Complements of <strong>999</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-49"><label for="various-addition-49" class="wtitle">Adding Complements of 10, 100 and 1000</label>
<div class="desc">
<a href="addition/addition_complements_0010_001.html" class="">Adding Complements of <strong>10</strong></a>
<a href="addition/addition_complements_0100_001.html" class="">Adding Complements of <strong>100</strong></a>
<a href="addition/addition_complements_1000_001.html" class="">Adding Complements of <strong>1000</strong></a>
</div>
</li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-50"><label for="various-addition-50" class="wtitle">Adding Complements of 11</label>
<div class="desc">
<a href="addition/addition_complements_0011_001.html" class="">Adding Complements of <strong>11</strong> (Blanks in First <strong>or</strong> Second Position Mixed)</a>
<a href="addition/addition_complements_0011_blank12_001.html" class="">Adding Complements of <strong>11</strong> (Blanks in First <strong>then</strong> Second Position)</a>
<a href="addition/addition_complements_0011_blank1_001.html" class="">Adding Complements of <strong>11</strong> (Blanks in First Position Only)</a>
<a href="addition/addition_complements_0011_blank2_001.html" class="">Adding Complements of <strong>11</strong> (Blanks in Second Position Only)</a>
<a href="addition/addition_complements_0011_blank123_001.html" class="">Adding Complements of <strong>11</strong> (Blanks in Any Position, Including Sums)</a>
</div>
</li>
<li><p>Using an adding doubles strategy can help students to process addition questions more quickly using mental math. To use this strategy, students must recognize that the two numbers are close to the same value (usually by one or two). They also must recognize by how much and whether it is greater or less than the first addend. A typical dialogue with the question, 15 + 16, might be, "I see that the second number is greater than the first number by 1. If I double the first number and add 1, I will get my answer. 15 doubled is 30 plus one is 31. 15 + 16, therefore, is 31."</p></li>
<li><input type="checkbox" class="list-checkbox" id="various-addition-51"><label for="various-addition-51" class="wtitle">Adding Doubles Up to 9</label>
<div class="desc">
<a href="addition/adding_doubles_small_001.html" class="">Adding Doubles (Up to 9)</a>