Subtraction homework: 1st Grade Subtraction Worksheets — free & printable
Posted onSubtraction Worksheets for Teachers | Teach Starter
-
-
Location
-
types
-
availability
-
file formats
-
publishers
-
32 of 52 teaching
resources for those ‘aha’ moments
-
teaching resource
Addition and Subtraction Minute Maths Booklet
A maths warm-up booklet with ten pages of addition and subtraction questions.
14 pages
Year
s
3 — 4 -
teaching resource
Year 5 Mental Maths Drills Workbook
Get the mental strategies flowing with this ten-page mental maths booklet covering the four operations.
14 pages
Year
5 -
Free
teaching resource
Linking Addition and Subtraction Worksheet
Explore the relationship between addition and subtraction with a fact family worksheet.
2 pages
Year
s
2 — 3 -
teaching resource
Simple Addition and Subtraction Questions
Use this versatile worksheet with your students when exploring early addition and subtraction number sentences.
2 pages
Year
s
F — 3 -
teaching resource
Jump Strategy: Subtraction on a Number LIne – Worksheets
Practice subtracting two-digit numbers with regrouping using a number line and the jump strategy with a pack of differentiated worksheets.
1 page
Year
s
1 — 2
Differentiated
Differentiated -
teaching resource
Dinosaur Maths — Addition & Subtraction — V2
Solve the addition and subtraction sums to colour in the dinosaur.
2 pages
Year
s
F — 1 -
teaching resource
Year 5 Numeracy Exit Tickets – Worksheets
20 Numeracy Exit Ticket activities for students to provide evidence of their learning progress.
6 pages
Year
5 -
teaching resource
Subtraction within 20 — Colour-by-Number Worksheet
Reveal the mystery picture by solving the subtraction problems with a colour-by-number worksheet.
2 pages
Year
s
1 — 2 -
teaching resource
Subtraction Sausage Dog – Worksheet
A set of superb subtraction sausage dog worksheets.
6 pages
Year
s
2 — 4 -
teaching resource
Year 6 Mental Maths Drills Workbook
Incorporate this mental maths drills booklet into your maths lesson warm-up routine.
14 pages
Year
6 -
teaching resource
Word Problem Worksheets — Year 5 and Year 6
4 mixed operations word problem worksheets with answers.
8 pages
Year
s
5 — 6 -
teaching resource
Number and Place Value Worksheets — Year 2
14 number worksheets linked to the Australian Curriculum.
28 pages
Year
2 -
teaching resource
Subtracting 2-Digit Numbers Worksheet
Practice 2-digit subtraction with regrouping with this drill and practice worksheet.
1 page
Year
s
3 — 4 -
teaching resource
Subtraction Across Zero — Colour By Number Worksheet
Practise subtraction across zeros with a fun colour-by-number worksheet.
1 page
Year
s
2 — 3 -
teaching resource
Making Monsters Subtraction — Worksheet
Have some spooky subtraction fun with three differentiated Halloween subtraction worksheets.
1 page
Year
s
F — 2
Differentiated
Differentiated -
teaching resource
Colour by Number — Subtraction Task Cards
Practice subtracting single and double-digit numbers with a set of subtraction color by number task cards.
22 pages
Year
s
1 — 6 -
teaching resource
Making Tens Subtraction Worksheet
Partition numbers to subtract with a printable subtraction worksheet.
4 pages
Year
s
2 — 3 -
teaching resource
Number and Place Value Worksheets — Year 3
16 number worksheets linked to the Australian Curriculum.
32 pages
Year
3 -
teaching resource
Subtraction Worksheets — 10/20 Frame Subtraction
Model and subtract numbers to twenty using ten frames with a handy subtraction worksheet.
1 page
Year
s
1 — 2 -
teaching resource
Subtraction within 20 — Number Bond Worksheet
Practise subtraction strategies, including number bonds and picture models, with a printable subtraction worksheet.
1 page
Year
s
1 — 2 -
teaching resource
Number Bonds Subtraction — Worksheet
Practise subtraction using number bonds with differentiated number bond worksheets.
1 page
Year
s
1 — 2
Differentiated
Differentiated -
teaching resource
Subtraction Using MAB Blocks — Worksheet
Subtract two-digit numbers using MAB blocks with a printable subtraction worksheet.
1 page
Year
2 -
Free
teaching resource
Subtraction Strategies – Assessment
Assess your students’ knowledge of subtraction strategies with a subtraction assessment.
1 page
Year
s
3 — 4 -
teaching resource
Operations of Four Maths Machine Worksheet
A worksheet to use when practising addition, subtraction, multiplication and division.
3 pages
Year
s
3 — 5 -
teaching resource
Part-Part-Whole Addition and Subtraction Worksheets
Reinforce your students’ understanding of how a bar model is used to solve 1-digit addition and subtraction number facts using the part-part-whole strategy.
36 pages
Year
1 -
teaching resource
One More, One Less — Worksheet
Practise foundational addition and subtraction facts using the concepts of one more and one less.
1 page
Year
s
F — 1 -
teaching resource
Spooky Subtraction Colour by Number — Worksheet
Bring some spooky maths fun into the classroom with a Halloween colour-by-number worksheet focused on subtracting four-digit numbers.
1 page
Year
s
3 — 4 -
teaching resource
Colouring by Numbers — Operations
Colouring pages to be used when working with operations.
5 pages
Year
s
1 — 5 -
teaching resource
Think Addition — Fact Family Worksheets
Use addition to solve subtraction problems with this worksheet.
4 pages
Year
s
1 — 2 -
teaching resource
Basic Subtraction Word Problems — Worksheet
Solve subtraction word problems by drawing picture models with a printable subtraction worksheet.
1 page
Year
s
1 — 2 -
teaching resource
Ten More and Ten Less — Cut and Paste Worksheet
Practise adding and subtracting 10 from given numbers within 100 in this cut-and-paste worksheet.
1 page
Year
s
F — 1 -
teaching resource
Adding and Subtracting Decimals Worksheet
Add and subtract decimals with a number line worksheet.
1 page
Year
s
4 — 5
- Subtraction Games
- Subtraction Labels, Signs & Decorations
- Subtraction Posters
JavaScript Assignment
❮ Previous
Next ❯
JavaScript Assignment Operators
Assignment operators assign values to JavaScript variables.
Operator | Example | Same As |
---|---|---|
= | x = y | x = y |
+= | x += y | x = x + y |
-= | x -= y | x = x — y |
*= | x *= y | x = x * y |
/= | x /= y | x = x / y |
%= | x %= y | x = x % y |
**= | x **= y | x = x ** y |
Shift Assignment Operators
Operator | Example | Same As |
---|---|---|
<<= | x <<= y | x = x << y |
>>= | x >>= y | x = x >> y |
>>>= | x >>>= y | x = x >>> y |
Bitwise Assignment Operators
Operator | Example | Same As |
---|---|---|
&= | x &= y | x = x & y |
^= | x ^= y | x = x ^ y |
|= | x |= y | x = x | y |
Logical Assignment Operators
Operator | Example | Same As |
---|---|---|
&&= | x &&= y | x = x && (x = y) |
||= | x ||= y | x = x || (x = y) |
??= | x ??= y | x = x ?? (x = y) |
Note
The Logical assignment operators are ES2020.
The = Operator
The Simple Assignment Operator assigns a value to a variable.
Simple Assignment Examples
let x = 10;
Try it Yourself »
let x = 10 + y;
Try it Yourself »
The += Operator
The Addition Assignment Operator adds a value to a variable.
Addition Assignment Examples
let x = 10;
x += 5;
Try it Yourself »
let text = «Hello»;
text += » World»;
Try it Yourself »
The -= Operator
The Subtraction Assignment Operator subtracts a value from a variable.
Subtraction Assignment Example
let x = 10;
x -= 5;
Try it Yourself »
The *= Operator
The Multiplication Assignment Operator multiplies a variable.
Multiplication Assignment Example
let x = 10;
x *= 5;
Try it Yourself »
The **= Operator
The Exponentiation Assignment Operator raises a variable to the power of the operand.
Exponentiation Assignment Example
let x = 10;
x **= 5;
Try it Yourself »
The /= Operator
The Division Assignment Operator divides a variable.
Division Assignment Example
let x = 10;
x /= 5;
Try it Yourself »
The %= Operator
The Remainder Assignment Operator assigns a remainder to a variable.
Remainder Assignment Example
let x = 10;
x %= 5;
Try it Yourself »
The <<= Operator
The Left Shift Assignment Operator left shifts a variable.
Left Shift Assignment Example
let x = -100;
x <<= 5;
Try it Yourself »
The >>= Operator
The Right Shift Assignment Operator right shifts a variable (signed).
Right Shift Assignment Example
let x = -100;
x >>= 5;
Try it Yourself »
The >>>= Operator
The Unsigned Right Shift Assignment Operator right shifts a variable (unsigned). = 5;
Try it Yourself »
The &&= Operator
The Logical AND assignment operator is used between two values.
If the first value is true, the second value is assigned.
Logical AND Assignment Example
let x = 10;
x &&= 5;
Try it Yourself »
The &&=
operator is an ES2020 feature.
The ||= Operator
The Logical OR assignment operator is used between two values.
If the first value is false, the second value is assigned.
Logical OR Assignment Example
let x = 10;
x ||= 5;
Try it Yourself »
The ||=
operator is an ES2020 feature.
The ??= Operator
The Nullish coalescing assignment operator is used between two values.
If the first value is undefined or null, the second value is assigned.
Nullish Coalescing Assignment Example
let x = 10;
x ??= 5;
Try it Yourself »
The ??=
operator is an ES2020 feature.
Test Yourself With Exercises
Exercise:
Use the correct assignment operator that will result in x
being 15
(same as x = x + y
).
x = 10; y = 5; x y;
Start the Exercise
❮ Previous
Next ❯
COLOR PICKER
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference
Top Examples
HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3. CSS Examples
Bootstrap Examples
PHP Examples
Java Examples
XML Examples
jQuery Examples
FORUM |
ABOUT
W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content.
While using W3Schools, you agree to have read and accepted our terms of use,
cookie and privacy policy.
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.
W3Schools is Powered by W3.CSS.
Homework on the topic «Addition and subtraction of decimal fractions»
Material published
4
nickname #School education #UMK N. Ya. Vilenkina
Competitive work All-Russian competition for teachers of mathematics for the best methodological development «Non-standard homework» |
Non-standard homework in mathematics
Theme «Addition and subtraction of decimal fractions», Grade 5
Mathematics teacher Zhirnova S. V.
To instill students’ interest in the subject «Mathematics» in my work, I use special coloring cards. Entertaining homework assignments are available, interesting. They help to consolidate students’ knowledge on the topic, strengthen their faith in their abilities, add creative strength, bring joy and a desire to learn.
Students receive instructions on how to complete their homework (solve examples, find the corresponding color for each answer, color the picture with colored pencils).
Homework is checked at the next lesson. The teacher demonstrates the answers with the help of a prepared presentation using a PC, a multimedia projector, a screen.
Homework goals:
To form the ability to add and subtract ordinary fractions, independently choosing the most rational calculation method for each example, repeat actions with decimal fractions, check the level of assimilation and computer skills in performing actions with decimal fractions, control the level assimilation of the material.
Develop students’ interest in the subject «Mathematics», develop mathematical and general outlook, thinking, attention and memory.
To cultivate accuracy, independence in work.
References:
N.Ya. Vilenkin and others. «Mathematics Grade 5» Textbook for educational institutions. — Moscow: Mnemosyne, 2015;
A.S. Chesnokov and others. «Didactic materials in mathematics for grade 5» — Moscow: Classic Style, 2015.
Repeat the rule!
When adding (subtracting) decimal fractions, you need to:
1) equalize the number of decimal places in these fractions by adding zeros to the corresponding fraction;
2) write them one under the other so that the comma is written under the comma;
3) perform addition (subtraction), ignoring the comma;
4) put a comma under the comma in the given fractions in the answer.
EXAMPLES
4.5 — yellow
48.27 — green
28.072 — red
7.36 23 — brown
12.83 — gray
2.5 — black
8.8 — red
100.0644 — black
85.4366 — orange
0.6959 — yellow
22.345 — brown
3- blue
3.968 — red 0 .72 — yellow
3.534 — brown 12.695 — purple
0.67 — blue 0.8 — pink
0.98 — orange
Date: March 12 to July 5
Posted by
You must be logged in to write a comment.
subtraction
- main
- Keywords
- subtraction
-
Math lesson on the topic «Improving subtraction skills from numbers 6 — □, 7 — □.
Composition of numbers 6, 7″
2022
Authors:
Andreeva Tatyana Vladimirovna, Lapaeva Oksana Nikolaevna, Trambitskaya Elena SergeevnaThe purpose of the lesson: to create conditions for the formation of a conscious ability to perform subtraction (table cases 6 — □, 7 — □).
EMC «School of Russia», subtraction
-
Lesson-tale «Teremok». Topic: «Compiling and solving examples. Solving problems for addition and subtraction»
2020
Author:
Kapustina Anastasia AlexandrovnaThe purpose of the lesson: to contribute to the actualization and consolidation of the knowledge gained in previous lessons, to exercise counting skills.
addition, subtraction ,
fairy tale «Teremok» -
An open lesson in grade 6 on the topic “Subtraction. Representing the difference as a sum.
2020
Author:
Yatmanova Olga GrigorievnaThe lesson is designed to form the skills of subtracting numbers with different signs, the ability to apply them in solving problems, examples. In the course of completing tasks, train the memory, brain, and develop strong-willed qualities.
subtraction ,
negative numbers, numbers with different signs -
Addition and subtraction of ordinary fractions
2020
Author:
Likhacheva Elena NikolaevnaLesson with the aim of consolidating and systematizing knowledge on the topic of addition and subtraction of ordinary fractions.
For the sake of increasing interest in mathematics, the lesson is built as a trip to the country of fractions.
fractions,
addition, subtraction -
General cases of subtracting through a dozen
2020
Author:
Grischuk Julia VladimirovnaThis video is a fragment of the lesson (the stage of explaining new material) on the topic «The general technique of tabular subtraction with the transition through a dozen.» The video is intended for 1st grade students and their parents, and can also be used by primary school teachers at the stage of explaining new material on this topic.
subtraction ,
distance learning,
decimal subtraction -
Math examples online
2020
Author:
AntonMathematics is the basis of all natural sciences, it is very important for children from the first grades to understand and study this subject. The article talks about the possibilities of teaching children mathematics using the Internet resource MathExample.com.
mathematics,
multiplication,
addition, subtraction ,
preschool education,
division,
homework, math examples -
Mathematics lesson in the 5th grade on the topic «Addition and subtraction of natural numbers»
2019
Author:
Zenkova Larisa NikolaevnaThe objectives of the lesson: generalization and consolidation of students’ knowledge on the topic «Addition and subtraction of natural numbers».
addition, subtraction ,
natural numbers -
Technological map of the lesson of mathematics in the 2nd grade. Topic: «Bitwise subtraction of a single-digit number from a two-digit number with a transition through the digit»
2019
Authors:
Veselova Olga Ivanovna, Portyankina Zhanna Albertovna, Serenkaya Olga AnatolyevnaThe purpose of the lesson: to create conditions for familiarization with the method of subtracting a single-digit number from a two-digit number with a transition through the discharge; improve computational skills, the ability to compose a problem for a given expression; promote the development of skills to generalize and draw conclusions.