math Crossword Puzzles

Math 2022-05-11

Math crossword puzzle
Across
  1. of variables
  2. integrals
  3. comparison theorem
  4. solution
  5. length
  6. sequence
  7. form
  8. field
  9. solution
  10. series
Down
  1. curve
  2. equation
  3. curves
  4. test
  5. by parts
  6. method
  7. fraction decomposition
  8. area
  9. comparison test
  10. term test

20 Clues: testformareacurvefieldcurvesmethodlengthseriesequationsolutionsequencesolutionintegralsby partsterm testof variablescomparison testcomparison theoremfraction decomposition

math 2023-01-01

math crossword puzzle
Across
  1. a mathematical sentence
  2. used to group numbers or variables
  3. two expressions that are not equal
  4. formed when two lines intersect
  5. an angle of 180
  6. angles opposite each other when two lines cross.
  7. two lines are crossed by another line
  8. expressions that work the same even though they look different
  9. two angles whose sum is 90
  10. a mathematical statement
  11. summands in a sum that differ only by a numerical factor
Down
  1. two angles whose sum is 180
  2. have a common side and a common vertex
  3. A linear system a unique solution
  4. Numbers we can multiply together to get another number
  5. single mathematical expression.
  6. the sum of angles
  7. a place holder used to determine a number
  8. a combination of numbers, variables, functions

19 Clues: an angle of 180the sum of anglesa mathematical sentencea mathematical statementtwo angles whose sum is 90two angles whose sum is 180formed when two lines intersectsingle mathematical expression.A linear system a unique solutionused to group numbers or variablestwo expressions that are not equaltwo lines are crossed by another line...

5th hour 2025-09-26

5th hour crossword puzzle
Across
  1. is the current ball in red champ
  2. plus sign means
  3. opposite of multiplication
  4. makes puzzles 5th hour
  5. where we solve math problems and play picitionary
  6. the e in pemdas
  7. kurseth jokes with this person
  8. instead of math we do this sometimes
Down
  1. means to times two numbers
  2. two thirds is a _________________
  3. 10 times 10
  4. the p in pemdas
  5. next week is
  6. hour we have math
  7. to take away
  8. order of operations acronym
  9. if three people got 15 dollars each how much in total was given
  10. a letter in algebra

18 Clues: 10 times 10next week isto take awaythe p in pemdasplus sign meansthe e in pemdashour we have matha letter in algebramakes puzzles 5th hourmeans to times two numbersopposite of multiplicationorder of operations acronymkurseth jokes with this personis the current ball in red champtwo thirds is a _________________instead of math we do this sometimes...

Best Class EVER! 2023-06-06

Best Class EVER! crossword puzzle
Across
  1. dino-lover
  2. this student is a middle child, with an older sister and younger brother, Billy
  3. the last name of the woman known as "crazy"
  4. the race Ava recently competed in
  5. class artist
  6. future president, kind-hearted, & knowledgeable about history
  7. her mom planned a party with a spoon relay race
Down
  1. retiring
  2. Mrs. Bittinger
  3. our class Math 24 champion
  4. his name is a city in this state
  5. Happy Birthday on April Fools Day
  6. Elena's favorite sport
  7. so helpful with Reader's Theatre
  8. Mr. Math
  9. D-Day expert
  10. so helpful in Math
  11. the season before winter

18 Clues: retiringMr. Mathdino-loverD-Day expertclass artistMrs. Bittingerso helpful in MathElena's favorite sportthe season before winterour class Math 24 championhis name is a city in this stateso helpful with Reader's TheatreHappy Birthday on April Fools Daythe race Ava recently competed inthe last name of the woman known as "crazy"...

Welcome to 6th Grade! 2021-08-06

Welcome to 6th Grade! crossword puzzle
Across
  1. One of Miss Andersen's hobbies
  2. The color of the folder we take out during a fire drill
  3. Our school's acronym for behavior / cougar cash
  4. A word we use for our units in math
  5. The town our school is in
  6. The day of the week homework is due
  7. The website you use in every class
  8. A quiet activity you can do when you finish
Down
  1. Math teacher's name
  2. The voice level we use for independent work
  3. A supply you need for class every day
  4. Our school mascot
  5. The class you are in
  6. A math website you'll use in advisory
  7. The grade you are in

15 Clues: Our school mascotMath teacher's nameThe class you are inThe grade you are inThe town our school is inOne of Miss Andersen's hobbiesThe website you use in every classA word we use for our units in mathThe day of the week homework is dueA supply you need for class every dayA math website you'll use in advisory...

Algebra 1 Vocabulary 2025-09-08

Algebra 1 Vocabulary crossword puzzle
Across
  1. The small number in the top right corner
  2. The ordered pair (0,0) where the x and y axes intersect
  3. Math statement without an equals sign
  4. Math statement with an equals sign
  5. A number without a variable right next to it
  6. The horizontal line on an xy plane
  7. To multiply everything inside of parenthesis by whatever is right in front of them
  8. The number in front of a variable
Down
  1. This tells a specific location or point on the xy plane
  2. The answer to a subtraction problem
  3. The answer to a division problem
  4. The vertical line on an xy plane
  5. To do all of the math in any math problem
  6. A lowercase letter representing an unknown amount
  7. A flipped fraction
  8. The answer to an addition problem
  9. The answer to a multiplication problem
  10. To add all like terms

18 Clues: A flipped fractionTo add all like termsThe answer to a division problemThe vertical line on an xy planeThe answer to an addition problemThe number in front of a variableMath statement with an equals signThe horizontal line on an xy planeThe answer to a subtraction problemMath statement without an equals signThe answer to a multiplication problem...

2.10 Using Math Methods 2024-11-22

2.10 Using Math Methods crossword puzzle
Across
  1. Math._____; a Math method that takes the absolute value of x
  2. What is y? y = Math.pow(2.0, 8.0);
  3. This class has about 30 math operations, known as methods, and is part of Java's standard language package with no import needed.
  4. This calls the Math class method, preceding the method name (ex: ____pow(num1, 2);)
  5. Math._____; a Math method that takes the square root of x
  6. Math.____; a Math method that needs 2 arguments to put the first number (first arg) to a power (second arg)
Down
  1. Method input values appearing within (), separated by commas if multiple
  2. What is y? y = Math.sqrt(81.0);
  3. z = Math.pow(2.0, Math.pow(2.0, 3.0));
  4. Math.sqrt(36.0); evaluates to _____ .
  5. List of statements executed by invoking the method's name known as the method call

11 Clues: What is y? y = Math.sqrt(81.0);What is y? y = Math.pow(2.0, 8.0);Math.sqrt(36.0); evaluates to _____ .z = Math.pow(2.0, Math.pow(2.0, 3.0));Math._____; a Math method that takes the square root of xMath._____; a Math method that takes the absolute value of xMethod input values appearing within (), separated by commas if multiple...

Math Crossword 2025-05-09

Math Crossword crossword puzzle
Across
  1. – A math operation that combines two or more numbers to get a total.
  2. – Symbols ( ) used in math to group parts of an expression that should be done first.
  3. of Operations – The rules that tell you the correct sequence to solve math problems (PEMDAS: Parentheses, Exponents, Multiply/Divide, Add/Subtract).
  4. – A letter or symbol that stands for a number we don’t know yet (e.g., x or y).
  5. – A math operation used to split a number into equal parts or groups.
  6. – A math operation that means repeated addition (e.g., 3 × 4 = 3 + 3 + 3 + 3).
  7. – The four basic math actions: addition, subtraction, multiplication, and division.
  8. Number not attached to the variable
Down
  1. – The answer to a multiplication problem.
  2. – A math operation that finds the difference between two numbers.
  3. The numbers attached to the variable
  4. – The answer to a division problem.
  5. Terms – Terms that have the same variable and exponent (e.g., 2x and 5x are like terms).
  6. a quantity representing the power to which a given number or expression is to be raised, usually expressed as a raised symbol beside the number or expression (e.g. 3 in 23 = 2 × 2 × 2).

14 Clues: – The answer to a division problem.Number not attached to the variableThe numbers attached to the variable– The answer to a multiplication problem.– A math operation that finds the difference between two numbers.– A math operation that combines two or more numbers to get a total.– A math operation used to split a number into equal parts or groups....

math math 2018-03-05

math math crossword puzzle
Across
  1. 5-3=2,the "-"
  2. the line in △,someone in the middle,someone outside.
  3. 3×4=12,the "×".
  4. 3×4=12,the "4".
  5. How many square centimeters of iron can make a box?
  6. πr²=_____.
  7. 2+3=5,the "2" and the "3".
  8. 12÷4=3,the "÷".
Down
  1. 5-3=2,the "2".
  2. three_____can constitute a triangle.
  3. 12÷4=3,the "4".
  4. 2+3=5,the "+".
  5. the point in the line's middle.
  6. square have four ____.

14 Clues: πr²=_____.5-3=2,the "-"5-3=2,the "2".2+3=5,the "+".12÷4=3,the "4".3×4=12,the "×".3×4=12,the "4".12÷4=3,the "÷".square have four ____.2+3=5,the "2" and the "3".the point in the line's middle.three_____can constitute a triangle.How many square centimeters of iron can make a box?the line in △,someone in the middle,someone outside.

Vocab Crossword Puzzle 2025-11-09

Vocab Crossword Puzzle crossword puzzle
Across
  1. ordered pairs on the coordinate plane
  2. the same
  3. slope, slope of a horizontal line
  4. set of y-values
  5. terms,have the same variable and the same exponent with that variable
  6. subtraction multiplication or division
  7. Function, an equation whose graph is a straight line
  8. of change, another name for slope (often used in word problems)
  9. pieces to a math problem separated by plus or minus
Down
  1. math sentence with an equal sign
  2. form, a linear equation written Ax + By = C
  3. operations,opposite operations (add and subtract or multiply and divide)
  4. steepness of a line also rise over run
  5. math sentence without an equal sign
  6. unknown quantity represented by a letter
  7. number being multiplied by the variable
  8. slope, slope of a vertical line
  9. problems that use less than or greater than
  10. where the x-axis and y-axis meet also the point (0,0)
  11. input has only one output
  12. function, the graph is not a straight line
  13. four areas of the coordinate plane
  14. to solve (get the answer to a math problem)
  15. set of x-values
  16. line test, Draw a vertical line on a graph if it passes through only one point it’s a function
  17. property,multiply the outside number by everything inside the parentheses

26 Clues: the sameset of y-valuesset of x-valuesinput has only one outputslope, slope of a vertical linemath sentence with an equal signslope, slope of a horizontal linefour areas of the coordinate planemath sentence without an equal signordered pairs on the coordinate planesteepness of a line also rise over runsubtraction multiplication or division...

Math 2022-01-06

Math crossword puzzle
Across
  1. Advanced math
  2. +
  3. /
  4. Another way to say 'x'
  5. all+all/#of values
  6. What you are doing
  7. x
Down
  1. Finding the area of an odd triangle
  2. ?x?=_
  3. Albert Einstein's famous equation.
  4. Expert math.
  5. %

12 Clues: +/%x?x?=_Expert math.Advanced mathall+all/#of valuesWhat you are doingAnother way to say 'x'Albert Einstein's famous equation.Finding the area of an odd triangle

svms teachers last names 2021-05-07

svms teachers last names crossword puzzle
Across
  1. 5th math teacher
  2. 7th/8th math teacher
  3. 7/8th new pe teacher
  4. 5/6th science and social studies teacher
  5. 7/8th science teacher
  6. 6th math teacher
  7. counselor
Down
  1. 7/8th band teacher
  2. principle
  3. 7/8th history teacher
  4. redhead 7th grade ela teacher, high school coach
  5. 8th grade ela teacher, boys basketball coach
  6. choir teacher
  7. art teacher

14 Clues: principlecounselorart teacherchoir teacher5th math teacher6th math teacher7/8th band teacher7th/8th math teacher7/8th new pe teacher7/8th history teacher7/8th science teacher5/6th science and social studies teacher8th grade ela teacher, boys basketball coachredhead 7th grade ela teacher, high school coach

CROSSWORD OF MY SUBJECTS 2021-06-23

CROSSWORD OF MY SUBJECTS crossword puzzle
Across
  1. _e__ (language)
  2. v_d__ (eca)
  3. rea_i__ (language)
  4. _l_n_t_ (natural ciences)
  5. p_a_t_ (natural sciences)
  6. s_n__ng ( physical education)
  7. m_l__p_i__t_o_ (matematics)
  8. s_n__ (english)
  9. t_e_t_r (language)
  10. _a_ (social studies)
  11. b__di__r__ty (social studies)
Down
  1. _t_r_e_ (integral human development)
  2. d__c_e (physical education)
  3. language n__ l_ngu_g_ (english)
  4. pro__c__t_on (language)
  5. p_e_i__nt (social studies)
  6. c_l_r_ (art-ACE)
  7. system s_l__ sy_tem (natural sciences)
  8. m_th (math)
  9. b_b_e_ (religion)

20 Clues: m_th (math)s_n__ (english)b_b_e_ (religion)v_d__ (eca)rea_i__ (language)c_l_r_ (art-ACE)t_e_t_r (language)_e__ (language)_a_ (social studies)pro__c__t_on (language)_l_n_t_ (natural ciences)p_e_i__nt (social studies)m_l__p_i__t_o_ (matematics)d__c_e (physical education)p_a_t_ (natural sciences)...

CROSSWORD OF MY SUBJECTS 2021-06-23

CROSSWORD OF MY SUBJECTS crossword puzzle
Across
  1. _e__ (language)
  2. v_d__ (eca)
  3. rea_i__ (language)
  4. _l_n_t_ (natural ciences)
  5. p_a_t_ (natural sciences)
  6. s_n__ng ( physical education)
  7. m_l__p_i__t_o_ (matematics)
  8. s_n__ (english)
  9. t_e_t_r (language)
  10. _a_ (social studies)
  11. b__di__r__ty (social studies)
Down
  1. _t_r_e_ (integral human development)
  2. d__c_e (physical education)
  3. language n__ l_ngu_g_ (english)
  4. pro__c__t_on (language)
  5. p_e_i__nt (social studies)
  6. c_l_r_ (art-ACE)
  7. system s_l__ sy_tem (natural sciences)
  8. m_th (math)
  9. b_b_e_ (religion)

20 Clues: m_th (math)s_n__ (english)b_b_e_ (religion)v_d__ (eca)rea_i__ (language)c_l_r_ (art-ACE)t_e_t_r (language)_e__ (language)_a_ (social studies)pro__c__t_on (language)_l_n_t_ (natural ciences)p_e_i__nt (social studies)m_l__p_i__t_o_ (matematics)d__c_e (physical education)p_a_t_ (natural sciences)...

CROSSWORD OF MY SUBJECTS 2021-06-23

CROSSWORD OF MY SUBJECTS crossword puzzle
Across
  1. _e__ (language)
  2. v_d__ (eca)
  3. rea_i__ (language)
  4. _l_n_t_ (natural ciences)
  5. p_a_t_ (natural sciences)
  6. s_n__ng ( physical education)
  7. m_l__p_i__t_o_ (matematics)
  8. s_n__ (english)
  9. t_e_t_r (language)
  10. _a_ (social studies)
  11. b__di__r__ty (social studies)
Down
  1. _t_r_e_ (integral human development)
  2. d__c_e (physical education)
  3. language n__ l_ngu_g_ (english)
  4. pro__c__t_on (language)
  5. p_e_i__nt (social studies)
  6. c_l_r_ (art-ACE)
  7. system s_l__ sy_tem (natural sciences)
  8. m_th (math)
  9. b_b_e_ (religion)

20 Clues: m_th (math)s_n__ (english)b_b_e_ (religion)v_d__ (eca)rea_i__ (language)c_l_r_ (art-ACE)t_e_t_r (language)_e__ (language)_a_ (social studies)pro__c__t_on (language)_l_n_t_ (natural ciences)p_e_i__nt (social studies)m_l__p_i__t_o_ (matematics)d__c_e (physical education)p_a_t_ (natural sciences)...

Math with Mrs. Steele: Expectations & Class Policies 2023-08-17

Math with Mrs. Steele:  Expectations & Class Policies crossword puzzle
Across
  1. grading one depends on class
  2. bathroom hall pass
  3. organization things to save
  4. snack not acceptable
  5. attendance
  6. retakes two
  7. school supplies
  8. retakes one
  9. math support one
  10. textbook resources
  11. homework
Down
  1. calculator one
  2. grading two depends on class
  3. dress code
  4. snack acceptable
  5. math support two
  6. calculator two
  7. website
  8. gum
  9. missing assignments
  10. keep in touch

21 Clues: gumwebsitehomeworkdress codeattendanceretakes tworetakes onekeep in touchcalculator onecalculator twoschool suppliessnack acceptablemath support twomath support onebathroom hall passtextbook resourcesmissing assignmentssnack not acceptableorganization things to savegrading two depends on classgrading one depends on class

TLC employees 2026-06-02

TLC employees crossword puzzle
Across
  1. TLC director/dean who lived in South Africa for 6 years
  2. English tutor who is vegan and always has snacks
  3. Receptionist who speaks Mandarin
  4. Compsci tutor who just graduated with his BA in CompSci
  5. English faculty who was on Jeopardy
  6. English dept. coordinator who is a foodie and has a dog named Korra
  7. Receptionist who plays football and is from Germany
  8. Math dept. coordinator who enjoys mountain biking
  9. Writing tutor who had their art in last years edition of the Cul-de-sac
  10. English tutor who is also an English professor here at COC
  11. Testing clerk whos favorite pokemon is Cyndaquil
  12. Biology tutor who also works at an escape room
  13. Math tutor who is studying dentistry
  14. CompSci tutor who tutors Adobe, CAWT, and Web Design
Down
  1. Math tutor who worked on a project collecting bacteria from almost space
  2. Testing clerk who had a beagle named Snoopy
  3. Accounting tutor who has twins
  4. Writing tutor who is a physics major
  5. Testing clerk who was a guest on the Kelly Clarkson show
  6. Compsci dept. coordinator who used to work at Six Flags
  7. English tutor who always wears a bandana
  8. Math tutor with an uncle who was a professional Santa Claus
  9. Math tutor who is also an instructor of record
  10. English tutor who is a polyglot
  11. Textbook clerk who is from Iran and has a son

25 Clues: Accounting tutor who has twinsEnglish tutor who is a polyglotReceptionist who speaks MandarinEnglish faculty who was on JeopardyWriting tutor who is a physics majorMath tutor who is studying dentistryEnglish tutor who always wears a bandanaTesting clerk who had a beagle named SnoopyTextbook clerk who is from Iran and has a son...

Mathematical beauty crossword-new 2025-04-17

Mathematical beauty crossword-new crossword puzzle
Across
  1. A logical proposition that has been proven based on previously established statements.
  2. A sudden realization or deep understanding.
  3. Mathematical form of attractiveness or elegance.
  4. Logical structure showing that a mathematical statement is true.
  5. Clear, easy to see or understand.
  6. One of the top qualities valued in beautiful proofs-simplicity with power.
  7. comfort, peace
  8. The opposite of simplicity; often found in higher math.
  9. Balanced arrangement of parts; a key concept in math and design.
  10. A famous mathematician associated with a stunning identity e, i, and pi.
  11. A number that cannot be expressed as a simple fraction.
  12. not possible to do easily or conveniently, impracticable
  13. beauty crossword-key and clues
Down
  1. Pleasing in appearance or form; often used to describe beautiful math.
  2. A term that means dependent on situation or context.
  3. When a mathematical concept sheds light or gives deep understanding.
  4. The act of finding or learning something new, often in math or science.
  5. not genuine, not intelligent.
  6. having little value or importance
  7. A philosophical term meaning 'relating to knowledge.'
  8. Deep comprehension or grasp of how something works.
  9. A precise yet broad field involving numbers, patterns, and reasoning.
  10. A connection or relationship in size or amount.
  11. Perceived understanding without conscious reasoning.
  12. The property of being in balance or agreement; often used to describe symmetry in math

25 Clues: comfort, peacenot genuine, not intelligent.beauty crossword-key and clueshaving little value or importanceClear, easy to see or understand.A sudden realization or deep understanding.A connection or relationship in size or amount.Mathematical form of attractiveness or elegance.Deep comprehension or grasp of how something works....

Marist 2013-03-26

Marist crossword puzzle
Across
  1. name of school
  2. music
  3. our belief
  4. knowledge
  5. the lord
  6. location
  7. education
  8. our mother
  9. science
  10. history
Down
  1. math
  2. a place after highschool
  3. technology
  4. a fun activity
  5. english

15 Clues: mathmusicenglishsciencehistorythe lordlocationknowledgeeducationour belieftechnologyour mothername of schoola fun activitya place after highschool

Let's study 2018-02-20

Let's study crossword puzzle
Across
  1. homeroom
  2. Japanese
  3. music
  4. PE
  5. artsandcrafts
  6. English
Down
  1. recess
  2. homeeconomics
  3. math
  4. science
  5. socialstudies
  6. cleaning
  7. calligraphy

13 Clues: PEmathmusicrecessscienceEnglishhomeroomJapanesecleaningcalligraphyhomeeconomicssocialstudiesartsandcrafts

BMS CROSS WORD by mohammed 2021-09-28

BMS CROSS WORD by mohammed crossword puzzle
Across
  1. Homework
  2. science
  3. cluster
  4. class
  5. fast
  6. reeding
  7. BMS
Down
  1. soicalstudies
  2. lockers
  3. lunch
  4. snack
  5. Ela
  6. math

13 Clues: ElaBMSfastmathlunchsnackclasslockersscienceclusterreedingHomeworksoicalstudies

SFFS 2024-01-24

SFFS crossword puzzle
Across
  1. Math
  2. Monty
  3. 5th
  4. Humanities
  5. Friends
  6. Awesome
  7. Volleyball
Down
  1. Basketball
  2. Newspaper
  3. Futsal
  4. Rich
  5. Design
  6. Jon

13 Clues: 5thJonMathRichMontyFutsalDesignFriendsAwesomeNewspaperBasketballHumanitiesVolleyball

Chloe's Autobiography 2016-02-22

Chloe's Autobiography crossword puzzle
Across
  1. Chloe's favorite color?
  2. Chloe is very__.
  3. How many parents total Does Chloe have?
  4. Enjoys playing?
  5. Likes things that __.
  6. Hendrix is her ____ brother.
  7. Chloe's last name?
  8. Her favorite animal is?
  9. Chloe wants to get an __ in math.
  10. Chloe received two trophies for Kumon and one for __.
Down
  1. Doesn't like this color?
  2. Chloe's worst subject.
  3. Chloe was born on ______ 29,2002.
  4. Chloe is not very __ at school.
  5. She hates doing math __.

15 Clues: Enjoys playing?Chloe is very__.Chloe's last name?Likes things that __.Chloe's worst subject.Chloe's favorite color?Her favorite animal is?Doesn't like this color?She hates doing math __.Hendrix is her ____ brother.Chloe is not very __ at school.Chloe was born on ______ 29,2002.Chloe wants to get an __ in math.How many parents total Does Chloe have?...

4th and 5th 2025-10-24

4th and 5th crossword puzzle
Across
  1. math expert
  2. loves helping others
  3. lovely smile
  4. loves math
  5. very quiet
  6. football star
  7. plays all the time
  8. works hard in school
  9. soft voice
Down
  1. very kind and helpful
  2. very friendly
  3. curly hair
  4. competitive
  5. lip gloss princess
  6. stitchBFF
  7. runs very fast
  8. great friend
  9. All-Star Sports

18 Clues: stitchBFFcurly hairloves mathvery quietsoft voicemath expertcompetitivelovely smilegreat friendvery friendlyfootball starruns very fastAll-Star Sportslip gloss princessplays all the timeloves helping othersworks hard in schoolvery kind and helpful

Cool Classes 2022-01-20

Cool Classes crossword puzzle
Across
  1. Careers
  2. Science
  3. Health
  4. History
  5. Math
  6. Studyhall
Down
  1. Lunch
  2. TechEd
  3. Spanish
  4. English
  5. German
  6. Recess
  7. Gym

13 Clues: GymMathLunchTechEdHealthGermanRecessCareersSpanishEnglishScienceHistoryStudyhall

4th Grade 2024-2025 2025-06-04

4th Grade 2024-2025 crossword puzzle
Across
  1. the name of our bean plant
  2. the amount of math teachers in the 4th grade
  3. gigi says this a lot
  4. booger man
  5. ms. shartel's favorite science unit
  6. the phone rings and they say Mateo is a _______
  7. brandon's favorite lunch
  8. online game to review for tests
  9. favorite morning activity
  10. night at the ________
Down
  1. the "r" in Mrs. R stands for...
  2. ms. shartel's favorite student
  3. subject after recess
  4. say this to win jinx
  5. the strings teacher
  6. same name in this class
  7. win this prize for the most puzzles or units
  8. a word ms. shartel says a lot
  9. don't bring these cards to school
  10. STEAM teacher
  11. NEW unit in 4th grade math

21 Clues: booger manSTEAM teacherthe strings teachersubject after recesssay this to win jinxgigi says this a lotnight at the ________same name in this classbrandon's favorite lunchfavorite morning activitythe name of our bean plantNEW unit in 4th grade matha word ms. shartel says a lotms. shartel's favorite studentthe "r" in Mrs. R stands for......

CROSSWORD OF MY SUBJECTS 2021-06-23

CROSSWORD OF MY SUBJECTS crossword puzzle
Across
  1. b_b_e_ (religion)
  2. v_d__ (eca)
  3. m_l__p_i__t_o_ (matematics)
  4. c_l_r_ (art-ACE)
  5. t_e_t_r (language)
  6. p_e_i__nt (social studies)
  7. rea_i__ (language)
  8. p_a_t_ (natural sciences)
  9. pro__c__t_on (language)
Down
  1. n__ l_ngu_g_ (english)
  2. b__di__r__ty (social studies)
  3. _a_ (social studies)
  4. d__c_e (physical education)
  5. _t_r_e_ (integral human development)
  6. m_th (math)
  7. s_n__ (english)
  8. s_n__ng ( physical education)
  9. _e__ (language)
  10. _l_n_t_ (natural ciences)
  11. system s_l__ sy_tem (natural sciences)

20 Clues: m_th (math)b_b_e_ (religion)s_n__ (english)v_d__ (eca)c_l_r_ (art-ACE)rea_i__ (language)t_e_t_r (language)_a_ (social studies)_e__ (language)n__ l_ngu_g_ (english)pro__c__t_on (language)_l_n_t_ (natural ciences)m_l__p_i__t_o_ (matematics)p_e_i__nt (social studies)d__c_e (physical education)p_a_t_ (natural sciences)...

Lightning Girl Chapter 1-10 2022-04-01

Lightning Girl Chapter 1-10 crossword puzzle
Across
  1. accept or allow wrong behavior
  2. solve using math
  3. lack or shortage
  4. a test or initiation
  5. a child genius
  6. Nana is making Lucy go to _______ for the first time in many years.
  7. clean
  8. to give a large amount of time and effort to something
  9. to decide or figure something out
Down
  1. Name of main character
  2. avoiding the company of other people
  3. an animal with rabies
  4. Who gave Lucy the lightning bolt charm?
  5. a strong, bad smell
  6. fear of something
  7. Lucy's math teacher
  8. What subject is Lucy really good at?
  9. How many times does Lucy tap her toes? (spell the number)
  10. to look very carefully at something
  11. a reason for doing something

20 Clues: cleana child geniussolve using mathlack or shortagefear of somethinga strong, bad smellLucy's math teachera test or initiationan animal with rabiesName of main charactera reason for doing somethingaccept or allow wrong behaviorto decide or figure something outto look very carefully at somethingavoiding the company of other people...

Unit 18 2020-05-11

Unit 18 crossword puzzle
Across
  1. sourcing food in the old times and today is a hobby
  2. very angry
  3. your parents go to work and..... money
  4. if we add up we get the....
  5. opposite of the word unequal
  6. work with children
  7. dessert made from cocoa beans
  8. it was the only animal in Unit 18
  9. you can hang your clothes there
  10. very tasty little cake
Down
  1. a kind of present
  2. if somebody wants everything for themselves they are....
  3. work salary
  4. in math there are add and ......
  5. in math there are ... and subtract
  6. regulary every week
  7. you keep your money inside this
  8. in math there are...... and rules
  9. you have one thing but you want two then you.... that
  10. aggressive action

20 Clues: very angrywork salarya kind of presentaggressive actionwork with childrenregulary every weekvery tasty little cakeif we add up we get the....opposite of the word unequaldessert made from cocoa beansyou keep your money inside thisyou can hang your clothes therein math there are add and ......it was the only animal in Unit 18...

Get To Know Our School! 2025-07-30

Get To Know Our School! crossword puzzle
Across
  1. Our school's principal
  2. Assistant Principal
  3. App used to earn points for good behavior
  4. 7th grade Math teacher
  5. 6th grade Social Studies teacher
  6. App used to log reading minutes
  7. One of our Performing Arts Classes
  8. 6th grade Science teacher
  9. 6th grade Math teacher
  10. 8th grade Social Studies teacher
  11. STEM teacher
  12. Health teacher
  13. One of our Performing Arts Classes
  14. 7th grade ELA teacher
  15. ESOL teacher
Down
  1. 8th grade Math teacher
  2. Art teacher
  3. Our school mascot
  4. Counselor 7th grade(L-Z) / 8th grade
  5. 7th grade Social Studies teacher
  6. 8th grade ELA teacher
  7. Band teacher (male teacher)
  8. Assistant Principal
  9. Counselor 6th grade/ 7th grade (A-K)
  10. 7th grade Science teacher
  11. PE Coach
  12. 6th grade ELA Teacher
  13. 8th grade Science teacher

28 Clues: PE CoachArt teacherSTEM teacherESOL teacherHealth teacherOur school mascotAssistant PrincipalAssistant Principal8th grade ELA teacher6th grade ELA Teacher7th grade ELA teacher8th grade Math teacherOur school's principal7th grade Math teacher6th grade Math teacher6th grade Science teacher7th grade Science teacher8th grade Science teacher...

NIETO MATH 25.26 2026-05-22

NIETO MATH 25.26 crossword puzzle
Across
  1. Math program used to track learning objectives by grade
  2. The 7th Grade Combatant from Art
  3. Jayceon's favorite slang word
  4. The most popular chip in DojoStore
  5. How many grade levels are there in FSMS?
  6. Do well & earn ____points.
  7. the "R" in S.O.A.R!
  8. FSMS Mascot
  9. The Resource math teacher next year
  10. The high school most people go to next year.
  11. Your Grade Level Principal
Down
  1. The Main Principal
  2. The Uncrowned King
  3. The 6th Grade combatant from another class
  4. the "S" in S.O.A.R!
  5. the "A" in S.O.A.R!
  6. the "O" in S.O.A.R!
  7. This is Math _____
  8. Henry "HD" _____!
  9. Manuel's motivation
  10. Osman's OP Prodigy Move: "Acid____"
  11. The King of Games
  12. Oldest 6th Grader

23 Clues: FSMS MascotHenry "HD" _____!The King of GamesOldest 6th GraderThe Main PrincipalThe Uncrowned KingThis is Math _____the "S" in S.O.A.R!the "A" in S.O.A.R!the "O" in S.O.A.R!the "R" in S.O.A.R!Manuel's motivationDo well & earn ____points.Your Grade Level PrincipalJayceon's favorite slang wordThe 7th Grade Combatant from Art...

Module 1 Vocabulary 2024-08-21

Module 1 Vocabulary crossword puzzle
Across
  1. the answer to a multiplication problem
  2. a biggest number that is a factor of two or more numbers
  3. a number consisting of a whole number and a fraction
  4. the product of a number
  5. is a part of a whole
  6. opposite
  7. is a math symbol that means to divide
Down
  1. two numbers whose product is 1
  2. a number that is a multiple of two or more numbers
  3. the numerator is bigger than the denominator
  4. a math symbol that means to multiply
  5. the numbers you multiply together in a multiplication problem
  6. the answer to a division problem
  7. a fraction written in a special form
  8. a math operation that can undo another math operation

15 Clues: oppositeis a part of a wholethe product of a numbertwo numbers whose product is 1the answer to a division problema math symbol that means to multiplya fraction written in a special formis a math symbol that means to dividethe answer to a multiplication problemthe numerator is bigger than the denominator...

Math Makes Sense 2013-06-13

Math Makes Sense crossword puzzle
Across
  1. Has 3 Equal Sides And Equal Angles
  2. Circumference of A ?
  3. The lines in a graph
  4. 3.1415926 is ?
  5. Has 3 Sides and 3 Angles
  6. A triangle with an angle over 90*
  7. Angles on the outside
  8. Our class is sometimes ?
  9. What do we use in Math
  10. Has 4 Equal Sides and Angles
Down
  1. Down or up at a slant
  2. The Shape of the Earth
  3. How to find an Angle exactly opposite
  4. 6 sides, all equal
  5. Back and forth
  6. Angles on the inside
  7. Our teacher is ? most of the time
  8. An angle smaller than 90*
  9. Parallel Lines and A transversal
  10. Our Teacher is often ?
  11. The subject of this crossword
  12. A test in Math every 3 Years

22 Clues: Back and forth3.1415926 is ?6 sides, all equalCircumference of A ?Angles on the insideThe lines in a graphDown or up at a slantAngles on the outsideThe Shape of the EarthOur Teacher is often ?What do we use in MathHas 3 Sides and 3 AnglesOur class is sometimes ?An angle smaller than 90*A test in Math every 3 YearsHas 4 Equal Sides and Angles...

A2 Happy Hour Menus 2020-05-20

A2 Happy Hour Menus crossword puzzle
Across
  1. Math is about _________ and sense-making
  2. questions and discussions deepen your ________ understanding
  3. Math is about _____________ NOT performing
  4. formulating questions that help deepen understanding
  5. perspective that uses words
  6. creation of knowledge through collective work
  7. Mathematical Thinking Practices
  8. correct manipulations of equations and expressions
Down
  1. identify alternatives and look for the most efficient method
  2. is much more important than speed
  3. making connections between concepts learned
  4. perspective that uses variables, formulas, equations
  5. perspective uses diagrams, pictures, images
  6. perspective uses specific values
  7. when we look beyond what we've been given
  8. mastery over time
  9. can learn math to the highest levels
  10. applying the meaning of definitions to guide our solutions
  11. Habits of Mind

19 Clues: Habits of Mindmastery over timeperspective that uses wordsMathematical Thinking Practicesperspective uses specific valuesis much more important than speedcan learn math to the highest levelsMath is about _________ and sense-makingwhen we look beyond what we've been givenMath is about _____________ NOT performing...

STAAR Message From Your Teacher 2023-05-07

STAAR Message From Your Teacher crossword puzzle
Across
  1. You will _____ tomorrow's test.
  2. What STAAR test is left?
  3. Who is your Math teacher?
  4. The name of your AMAZING school.
  5. Who else teaches Math in 3rd grade?
  6. The "K" means pulling out what you _____.
  7. A strategy we use for skip counting.
  8. Your Reading Teacher.
Down
  1. The 3rd grade math this year has been _____.
  2. Are flat, have 3 or more straight lines & closed.
  3. A parallelogram has 2 sets of _____ lines.
  4. Ms. Lee has a lot of _____ in you.
  5. You must show _____ in every box.

13 Clues: Your Reading Teacher.What STAAR test is left?Who is your Math teacher?You will _____ tomorrow's test.The name of your AMAZING school.You must show _____ in every box.Ms. Lee has a lot of _____ in you.Who else teaches Math in 3rd grade?A strategy we use for skip counting.The "K" means pulling out what you _____....

⅞ Belle Isle Staff 2024-09-16

⅞ Belle Isle Staff crossword puzzle
Across
  1. 8th History teacher
  2. ⅞ Office lady
  3. Vocal teacher
  4. 7 Habits teacher
  5. 7th Spanish teacher
  6. ⅞ Librarian
  7. ⅞ Vice Principal
  8. 7th Geography teacher
  9. 8th Science teacher
Down
  1. 8th Spanish teacher
  2. ⅞ Counselor
  3. 7th ELA teacher
  4. 8th Math teacher
  5. 8th ELA teacher
  6. 7th Science teacher
  7. 7th Math teacher
  8. Principal

17 Clues: Principal⅞ Counselor⅞ Librarian⅞ Office ladyVocal teacher7th ELA teacher8th ELA teacher7 Habits teacher8th Math teacher⅞ Vice Principal7th Math teacher8th Spanish teacher8th History teacher7th Spanish teacher7th Science teacher8th Science teacher7th Geography teacher

5th grade math for Drew 2024-12-21

5th grade math for Drew crossword puzzle
Across
  1. The amount of space inside a shape, measured in square units.
  2. The result of adding numbers.
  3. A letter or symbol that represents an unknown value.
  4. The math operation of splitting into equal parts.
  5. The result of multiplying numbers.
  6. A part of a whole, represented with a numerator and denominator.
  7. The result of subtracting numbers.
  8. A number greater than 1 that has only two factors: 1 and itself.
  9. The total distance around a shape.
  10. A round shape where all points are equidistant from the center.
  11. The result of a division problem.
  12. A math statement that shows two expressions are equal.
Down
  1. A number that divides another number evenly.
  2. The math operation of repeated addition.
  3. To cross or meet at a point.
  4. The branch of math dealing with shapes, sizes, and properties of space.
  5. Lines that never meet, no matter how far they extend.
  6. A number with a point to separate whole numbers and parts.
  7. The space between two intersecting lines, measured in degrees.
  8. A straight one-dimensional figure that extends infinitely in both directions.

20 Clues: To cross or meet at a point.The result of adding numbers.The result of a division problem.The result of multiplying numbers.The result of subtracting numbers.The total distance around a shape.The math operation of repeated addition.A number that divides another number evenly.The math operation of splitting into equal parts....

Belle Isle 7/8 Staff 2024-09-18

Belle Isle 7/8 Staff crossword puzzle
Across
  1. 8th History teacher
  2. 8th Science teacher
  3. 7th ELA teacher
  4. Vocal teacher
  5. 7 Habits teacher
  6. ⅞ Counselor
  7. Principal
Down
  1. ⅞ Vice Principal
  2. 7th Spanish teacher
  3. ⅞ Office lady
  4. 8th Spanish teacher
  5. 8th ELA teacher
  6. 8th Math teacher
  7. 7th Science teacher
  8. 7th Math teacher
  9. 7th Geography teacher
  10. ⅞ Librarian

17 Clues: Principal⅞ Counselor⅞ Librarian⅞ Office ladyVocal teacher8th ELA teacher7th ELA teacher⅞ Vice Principal8th Math teacher7th Math teacher7 Habits teacher7th Spanish teacher8th History teacher8th Spanish teacher8th Science teacher7th Science teacher7th Geography teacher

Math 2016-09-21

Math crossword puzzle
Across
  1. 3^1/2 * 4^1/2
  2. The tangent to a circle is ______________ to the radius through the point of contact
  3. Area of __________ of a circle = Area of the corresponding sector – Area of the corresponding triangle.
  4. sin (90° – ɵ)=
  5. h = _____________ height of the frustum
  6. ɵ represents
  7. with the assumption that the frequency of a class is centred at its mid-point, called its __________________.
  8. 0.6666666666666666.... reccuring and non-terminating
  9. SSS and AAA are similarity____________________
  10. The probability of an event lies between __ and 1
Down
  1. Aryabhatta called sine
  2. list of numbers in which each term is obtained by adding a fixed number to the preceding term except the first term.
  3. The cumulative frequency of a class is the frequency obtained by adding the frequencies of all the classes ______________ the given class.
  4. a proven statement used for proving another statement.
  5. =Number of outcomes favourable / Number of all possible outcomes of the experiment
  6. The probability of a sure event
  7. the values of the trigonometric ratios of an angle do not vary with the lengths of the sides of the triangle, if the angle remains the__________________
  8. The median of grouped data can be obtained graphically as the x-coordinate of the point of intersection of the two _______ for this data.

18 Clues: ɵ represents3^1/2 * 4^1/2sin (90° – ɵ)=Aryabhatta called sineThe probability of a sure eventh = _____________ height of the frustumSSS and AAA are similarity____________________The probability of an event lies between __ and 10.6666666666666666.... reccuring and non-terminatinga proven statement used for proving another statement....

Math 2012-11-10

Math crossword puzzle
Across
  1. the distance from zero
  2. the element of a set that when added to another element,the value never changes.
  3. the number in an expression
  4. a product of numbers and variables
  5. a value that will never change
  6. indicates how many times the number is multiplied
  7. an expression with an equal sign
  8. a letter symbol
  9. to fiind a power of a product
  10. to find a power of a power
  11. a set of values of the independent variable
Down
  1. made of numbers variables and operation signs
  2. to divide powers that have the same base
  3. if a vertical line crosses a line only once, it a functon. if it crosses more than once its not a function
  4. to multiply powers having the same base
  5. set of all output values
  6. method representing a function
  7. the number value in a monomial

18 Clues: a letter symbolthe distance from zeroset of all output valuesto find a power of a powerthe number in an expressionto fiind a power of a producta value that will never changemethod representing a functionthe number value in a monomialan expression with an equal signa product of numbers and variablesto multiply powers having the same base...

Math 2012-11-10

Math crossword puzzle
Across
  1. the distance from zero
  2. the element of a set that when added to another element,the value never changes.
  3. the number in an expression
  4. a product of numbers and variables
  5. a value that will never change
  6. indicates how many times the number is multiplied
  7. an expression with an equal sign
  8. a letter symbol
  9. to fiind a power of a product
  10. to find a power of a power
  11. a set of values of the independent variable
Down
  1. made of numbers variables and operation signs
  2. to divide powers that have the same base
  3. if a vertical line crosses a line only once, it a functon. if it crosses more than once its not a function
  4. to multiply powers having the same base
  5. set of all output values
  6. method representing a function
  7. the number value in a monomial

18 Clues: a letter symbolthe distance from zeroset of all output valuesto find a power of a powerthe number in an expressionto fiind a power of a producta value that will never changemethod representing a functionthe number value in a monomialan expression with an equal signa product of numbers and variablesto multiply powers having the same base...

Math 2021-10-03

Math crossword puzzle
Across
  1. 22-33
  2. -7+-3
  3. 144 divided by 12
  4. 10+-5
  5. 21--2
  6. 81 divided by -9
  7. 9-11
  8. 5-3
  9. 11-2
Down
  1. -6--3
  2. 200 divided by 10
  3. -9+-4
  4. 17--11
  5. -3+9
  6. 12+-3
  7. 20-3
  8. 9--3
  9. -22+22
  10. 120 divided by -10

19 Clues: 5-3-3+920-39--39-1111-2-6--322-33-9+-4-7+-310+-512+-321--217--11-22+2281 divided by -9200 divided by 10144 divided by 12120 divided by -10

Math 2022-11-09

Math crossword puzzle
Across
  1. subset or part of a population
  2. something that appears to the participants to be an active treatment, but does not actually contain the active treatment
  3. a study of every unit, everyone or everything, in a population.
  4. collection of all outcomes responses or counts
  5. Describes Qualities or characteristics
  6. an investigation about the characteristics of a given population by means of collecting data from a sample of that population and estimating their characteristics through the systematic use of statistical methodology
  7. first and simplest level of measurement
  8. the act of randomly assigning subjects in a study to different treatment groups
  9. Science of collecting, interpreting data in order to make decision.
  10. blind keeping study participants, those involved with their management, and those collecting and analyzing clinical data unaware of the assigned treatment, so that they should not be influenced by that knowledge.
Down
  1. a model that mimics the operation of an existing or proposed system, providing evidence for decision-making by being able to test different scenarios or process changes.
  2. value of data in the form of counts or numbers
  3. a numerical description of a population characteristic
  4. numerical description of sample statistic
  5. investigates the cause and effect relationship between two variables.
  6. he concealment of group allocation from one or more individuals involved in a clinical research study
  7. groups variables into categories and conveys order of the variable.
  8. information from observation

18 Clues: information from observationsubset or part of a populationDescribes Qualities or characteristicsfirst and simplest level of measurementnumerical description of sample statisticvalue of data in the form of counts or numberscollection of all outcomes responses or countsa numerical description of a population characteristic...

MATH 2021-04-28

MATH crossword puzzle
Across
  1. law The Law that says you can swap numbers around and still get the same answer when you add.
  2. Numbers, symbols and operators (such as + and ×) grouped together that show the value of something
  3. The result of multiplying a number by an integer (not by a fraction)
  4. The result of adding two or more numbers
  5. The result of subtracting one number from another how much one number differs from another.
  6. factorization Finding which prime numbers multiply together to make the original number.
  7. The answer after we divide one number by another.
  8. value The value of where a digit is in the number
Down
  1. law When adding it doesn't matter how we group the numbers (i.e. which we calculate first)
  2. common factor)The greatest number that is a factor of two (or more) other numbers.
  3. When dividing by a certain number gives a whole number answer
  4. common multiple)The smallest positive number that is a multiple of two or more numbers
  5. Numbers we can multiply together to get another number
  6. A whole number that can be made by multiplying other whole numbers
  7. A whole number greater than 1 that can not be made by multiplying other whole numbers
  8. The reciprocal of a number is: 1 divided by the number
  9. form A fraction is in simplest form when the top and bottom cannot be any smaller, while still being whole numbers
  10. The answer when two or more values are multiplied together.
  11. Having the same value

19 Clues: Having the same valueThe result of adding two or more numbersThe answer after we divide one number by another.value The value of where a digit is in the numberNumbers we can multiply together to get another numberThe reciprocal of a number is: 1 divided by the numberThe answer when two or more values are multiplied together....

Math 2022-10-10

Math crossword puzzle
Across
  1. change/original
  2. shape equals 180 degrees
  3. X= -b+√b^2-4ac/2a
  4. ½ × base × height
  5. Y=mx+b
  6. 2πr
  7. (x1 + x2)/2,(y1 + y2)/2
  8. most common number
  9. √(y1 – y2)² + (x1 – x2)²
  10. a^2+b^2=c^2
Down
  1. biggest-smallest
  2. πr²
  3. 2r
  4. y-y1=m(x-x1)
  5. (y1 – y2)/(x1 – x2)
  6. part/whole × 100%
  7. sum of terms/number of terms
  8. middle # or average of 2 middle numbers

18 Clues: 2rπr²2πrY=mx+ba^2+b^2=c^2y-y1=m(x-x1)change/originalbiggest-smallestX= -b+√b^2-4ac/2a½ × base × heightpart/whole × 100%most common number(y1 – y2)/(x1 – x2)(x1 + x2)/2,(y1 + y2)/2shape equals 180 degrees√(y1 – y2)² + (x1 – x2)²sum of terms/number of termsmiddle # or average of 2 middle numbers

MATH 2024-01-19

MATH crossword puzzle
Across
  1. The name of a racing game
  2. Middle of scores
  3. Outside of a prism
  4. C=√a²+b²
  5. Math of shapes
  6. X,Y,Z
  7. S,A,S or S,S,S
  8. Most appearing score
  9. Range of scores
Down
  1. mm, cm, m, km
  2. A survey swayed to one side
  3. inch, foot, yard, mile
  4. The name of a very popular math teacher
  5. A,S,S or A,A,S
  6. Unit of Triangles
  7. Not a speaker
  8. Average of scores
  9. the amount of bend between two lines

18 Clues: X,Y,ZC=√a²+b²mm, cm, m, kmNot a speakerA,S,S or A,A,SMath of shapesS,A,S or S,S,SRange of scoresMiddle of scoresUnit of TrianglesAverage of scoresOutside of a prismMost appearing scoreinch, foot, yard, mileThe name of a racing gameA survey swayed to one sidethe amount of bend between two linesThe name of a very popular math teacher

Math 2024-03-28

Math crossword puzzle
Across
  1. to a system,Usually an ordered pair ( x, y). It
  2. represents a range of solutions.
  3. expression into a number.
  4. notation, Another way of expressing solution sets.
  5. Use order of operations to turn a
  6. in its simplest form.
  7. reciprocal slopes.
  8. to be a solution to EVERY equation in the system.
  9. and other math methods to make an
  10. Use distribution, combining like
Down
  1. lines, Two lines are parallel if and only if they have the
  2. A nonlinear equation where as
  3. dependent variable multiplies at a constant rate.
  4. the same variables.
  5. root, Undos the power of 2
  6. slope.
  7. independent variable increases at a constant rate,
  8. of equations, A group of 2 or more equations that
  9. lines, Two lines are perpendicular if and only if they

19 Clues: slope.reciprocal slopes.the same variables.in its simplest form.expression into a number.root, Undos the power of 2A nonlinear equation where asrepresents a range of solutions.Use distribution, combining likeUse order of operations to turn aand other math methods to make anto a system,Usually an ordered pair ( x, y). It...

Math 2023-08-29

Math crossword puzzle
Across
  1. A rule that assigns each input to a unique output.
  2. An expression formed by adding and multiplying variables and constants.
  3. theorem A theorem used to find the remainder when a polynomial is divided by (x - c).
  4. function A function with the form f(x) = ax^n, where a and n are constants.
  5. function A function expressed as the quotient of two polynomials.
  6. The number of times a root occurs in a polynomial.
  7. A set of ordered pairs that relate two sets of data.
  8. maximum The highest point on a graph within a local range.
  9. function A polynomial function of degree 3.
Down
  1. A function with abrupt changes or gaps in its graph.
  2. theorem A formula for expanding the power of a binomial expression.
  3. asymptote A vertical line approached but never crossed by a function's graph.
  4. rate of change The average slope of a function over an interval.
  5. A statistical technique to model relationships between variables.
  6. A discontinuity that can be eliminated by redefining the function at a particular point
  7. Formula imaginary A formula to find the roots of quadratic equations, including imaginary solutions.
  8. odd function A function that is unchanged when reflected over the origin and has odd symmetry.
  9. division A method to divide polynomials for polynomial long division.

18 Clues: function A polynomial function of degree 3.A rule that assigns each input to a unique output.The number of times a root occurs in a polynomial.A function with abrupt changes or gaps in its graph.A set of ordered pairs that relate two sets of data.maximum The highest point on a graph within a local range....

math 2024-08-04

math crossword puzzle
Across
  1. 678 + 4321
  2. 8765 - 4321
  3. 6789 - 2345
  4. 2345 - 678
  5. 987 + 654
  6. 7890 + 123
  7. 7890 - 456
  8. 5678 + 1234
  9. 345 + 6789
  10. 789 + 321
  11. 2345 + 678
Down
  1. 3456 + 789
  2. 9876 - 5432
  3. 1234 - 567
  4. 4321 - 210
  5. 1234 + 567
  6. 4567 - 890
  7. 8765 - 1234
  8. 5678 + 345
  9. 4567 - 1234

20 Clues: 987 + 654789 + 321678 + 43213456 + 7891234 - 5674321 - 2102345 - 6781234 + 5677890 + 1234567 - 8907890 - 4565678 + 345345 + 67892345 + 6788765 - 43219876 - 54326789 - 23458765 - 12345678 + 12344567 - 1234

MATH 2026-03-17

MATH crossword puzzle
Across
  1. – Half of diameter
  2. – Line where two faces meet
  3. – Solid with two identical faces
  4. – Vertical distance
  5. – Measure of a surface
  6. – Corner of a shape
  7. – Round base or face
  8. – Inclined side of a cone
  9. – 3-sided base
  10. – Top point of a pyramid
Down
  1. – Capacity of a solid
  2. – Outer layer
  3. –Boundary around a shape
  4. – Across a circle
  5. – Flat surface
  6. – 4-sided base
  7. – Side surface
  8. – Bottom of a solid

18 Clues: – Outer layer– Flat surface– 4-sided base– Side surface– 3-sided base– Across a circle– Half of diameter– Vertical distance– Corner of a shape– Bottom of a solid– Round base or face– Capacity of a solid– Measure of a surface–Boundary around a shape– Top point of a pyramid– Inclined side of a cone– Line where two faces meet...

Year 4 Memory Book 2025-09-11

Year 4 Memory Book crossword puzzle
Across
  1. Year 5 Class
  2. Best Subject
  3. New Teacher
  4. Best Thing
  5. Highight
  6. Role In Concert
  7. Teacher
  8. Free Time Game
Down
  1. End Of Day
  2. Class Next Door
  3. Math Topic
  4. Best Excursion
  5. Broken Bone
  6. Worst Subject
  7. Best Friend
  8. Recess Game

16 Clues: TeacherHighightEnd Of DayMath TopicBest ThingBroken BoneNew TeacherBest FriendRecess GameYear 5 ClassBest SubjectWorst SubjectBest ExcursionFree Time GameClass Next DoorRole In Concert

TVOL 2 (Anthony's) 2022-12-07

TVOL 2 (Anthony's) crossword puzzle
Across
  1. ????????? Whaaaaaaaaaaaat?!
  2. :(, I'm sad
  3. THAT'S WHAT A BED IS FOR! You can be ____
  4. Graveyard
  5. PLEASE WITH A CHERRY ON TOP
  6. One bumblebee, two bumblebees, … 619843894 bumblebees!
  7. I am sad and longer
  8. Thanks for donating!
  9. Whatever, 3+10 is 13; That might be the answer...
Down
  1. Bunny has appeared in a Magican's Hat
  2. Sorry, floor 0 does not exist. Please retry! :)))
  3. There is a lot of math in Mr. Cohen's class; this class is ____ with math
  4. I am friendly
  5. I DON'T NEED TO PROCURE HEARING AIDS
  6. NOOO!!! WHY IS ONE+ONE TWO?!?!??! :(
  7. :)I'm content
  8. The lush meadow had waving grass and fluttering bumblebees circling it.
  9. ROAR! LET'S ACE THE MATH TEST!
  10. Unique
  11. CREST AND TROUGH

20 Clues: UniqueGraveyard:(, I'm sadI am friendly:)I'm contentCREST AND TROUGHI am sad and longerThanks for donating!????????? Whaaaaaaaaaaaat?!PLEASE WITH A CHERRY ON TOPROAR! LET'S ACE THE MATH TEST!I DON'T NEED TO PROCURE HEARING AIDSNOOO!!! WHY IS ONE+ONE TWO?!?!??! :(Bunny has appeared in a Magican's HatTHAT'S WHAT A BED IS FOR! You can be ____...

Math 8 Crossword 2024-09-23

Math 8 Crossword crossword puzzle
Across
  1. the school Ms. Robertson went to
  2. terms you can add together
  3. the counting numbers and zero
  4. Ms Robertson's favorite example of an irrational number
  5. a type of math using shapes
  6. a type of decimal that ends
  7. The "math word" for a hypothesis
  8. a type of math using equations and variables
  9. the best subject ever!
Down
  1. a positive or negative whole number, and zero
  2. a whole number whose square root is a whole number as well
  3. any number that can be expressed as a fraction
  4. a letter used to represent an unknown value
  5. a decimal that goes forever without repeating or terminating
  6. Another way to say equal

15 Clues: the best subject ever!Another way to say equalterms you can add togethera type of math using shapesa type of decimal that endsthe counting numbers and zerothe school Ms. Robertson went toThe "math word" for a hypothesisa letter used to represent an unknown valuea type of math using equations and variables...

Summit 6th Grade Crossword 2023-03-29

Summit 6th Grade Crossword crossword puzzle
Across
  1. Where we learn about maps and countries
  2. 601 Math teacher
  3. Where Mrs. Williams is the Queen
  4. Where we learn about rocks and the earth!
  5. Free time during 4th hour
  6. 602 English teacher
  7. Where we learn about grammar and essays
  8. 602 Math teacher
  9. 601 Literacy teacher
  10. Where you find your grades
  11. 601 Science teacher
  12. Our SRO
Down
  1. Should never be out in school!
  2. The Summit Mascot
  3. 602 Social Studies teacher
  4. Where do you eat lunch?
  5. 6th grade principal
  6. What town are we in?
  7. Where we learn about numbers
  8. Where we learn about Books and Poems
  9. Where you look for information about your class each day
  10. What should be around your neck?

22 Clues: Our SRO601 Math teacher602 Math teacherThe Summit Mascot6th grade principal602 English teacher601 Science teacherWhat town are we in?601 Literacy teacherWhere do you eat lunch?Free time during 4th hour602 Social Studies teacherWhere you find your gradesWhere we learn about numbersShould never be out in school!Where Mrs. Williams is the Queen...

Gupta Empire 2016-05-27

Gupta Empire crossword puzzle
Across
  1. used to make metal tools and objects
  2. this word means that astro and math were combined
  3. had great advancements and is related to legal drugs
  4. orange and yellowish shining material
  5. a system in math
  6. other word for it ajanta
  7. where they're numbers and systems
  8. they were very enocouraged by this
  9. used to make iron tools and objects
  10. rock like material
Down
  1. building where students learned
  2. was an empire and dynasty
  3. studied by students next to hinduism
  4. material that comes from trees
  5. seven areas
  6. studied by students next to buddhism
  7. it encouraged trade
  8. time where there was advancements and money
  9. page study of space
  10. famous material used to make sculptures

20 Clues: seven areasa system in mathrock like materialit encouraged tradepage study of spaceother word for it ajantawas an empire and dynastymaterial that comes from treesbuilding where students learnedwhere they're numbers and systemsthey were very enocouraged by thisused to make iron tools and objectsused to make metal tools and objects...

My SASC Middle School Teachers 2025-10-10

My SASC Middle School Teachers crossword puzzle
Across
  1. 6th Grade Math
  2. 6th Grade Learning Strategies
  3. 6th/7th/8th Grades Science
  4. 6th History/7th & 8th Learning Strategies
  5. 6th/7th/8th P.E.
  6. 6th/7th/8th Grades ELA
  7. 8th Grade Math
Down
  1. 7th Grade Math (second semester)
  2. 7th Grade History
  3. 7th Grade Math (first semester)
  4. 8th Grade History

11 Clues: 6th Grade Math8th Grade Math6th/7th/8th P.E.7th Grade History8th Grade History6th/7th/8th Grades ELA6th/7th/8th Grades Science6th Grade Learning Strategies7th Grade Math (first semester)7th Grade Math (second semester)6th History/7th & 8th Learning Strategies

High School Crossword 2021-10-01

High School Crossword crossword puzzle
Across
  1. zach
  2. amy
  3. lori
  4. jimmy
  5. laura
  6. job boxes
  7. audrey
Down
  1. math
  2. shop rite
  3. carly
  4. lisa
  5. reading
  6. anna
  7. lori

14 Clues: amymathzachlisaloriannaloricarlyjimmylauraaudreyreadingshop ritejob boxes

Belle Isle 7/8 Staff 2024-09-18

Belle Isle 7/8 Staff crossword puzzle
Across
  1. Vocal teacher
  2. 8th History teacher
  3. 8th Spanish teacher
  4. 7th Math teacher
  5. 7th Geography teacher
  6. ⅞ Vice Principal
  7. 7th Spanish teacher
  8. 8th Math teacher
Down
  1. 8th ELA teacher
  2. ⅞ Office lady
  3. ⅞ Librarian
  4. 7th Science teacher
  5. ⅞ Counselor
  6. Principal
  7. 7th ELA teacher
  8. 8th Science teacher
  9. 7 Habits teacher

17 Clues: Principal⅞ Librarian⅞ Counselor⅞ Office ladyVocal teacher8th ELA teacher7th ELA teacher7th Math teacher⅞ Vice Principal7 Habits teacher8th Math teacher7th Science teacher8th History teacher8th Spanish teacher8th Science teacher7th Spanish teacher7th Geography teacher

Hidden figures 2025-02-18

Hidden figures crossword puzzle
Across
  1. Racially separated
  2. Synonym for toilet
  3. Code name based off a game company
  4. The name of the successful rocket
  5. Someone that does complicated math problems
  6. Things, shapes
  7. Study of numbers
Down
  1. Ask someone to marry you
  2. Someone that enters space
  3. The name of a failed rocket
  4. A shuttle to send you to space
  5. Concealed,
  6. Empty, beyond the world
  7. Solutions for math problems

14 Clues: Concealed,Things, shapesStudy of numbersRacially separatedSynonym for toiletEmpty, beyond the worldAsk someone to marry youSomeone that enters spaceThe name of a failed rocketSolutions for math problemsA shuttle to send you to spaceThe name of the successful rocketCode name based off a game companySomeone that does complicated math problems

Teachers in the School 2022-09-06

Teachers in the School crossword puzzle
Across
  1. custodian
  2. teaches HS English
  3. teaches HS English
  4. Teaches MS English
  5. security
  6. teaches MS Social Studies
  7. teaches HS Science
  8. Teaches MS Science
  9. nurse assistant
  10. Teaches MS English
Down
  1. facilitator
  2. teaches HS Social Studies
  3. teaches HS Math
  4. education support
  5. secretary
  6. director
  7. nurse
  8. Teaches MS Math
  9. school counselor

19 Clues: nursedirectorsecuritycustodiansecretaryfacilitatorteaches HS MathTeaches MS Mathnurse assistantschool counseloreducation supportteaches HS Englishteaches HS EnglishTeaches MS Englishteaches HS ScienceTeaches MS ScienceTeaches MS Englishteaches HS Social Studiesteaches MS Social Studies

Math Vocabulary 2024-04-10

Math Vocabulary crossword puzzle
Across
  1. the distance from zero on a number line
  2. least common multiple
  3. a comparison of two amounts
  4. answer to addition problem
  5. answer to division problem
  6. the same number but in the opposite direction of zero on a number line
  7. best 6th grade Math teacher
  8. math sentence WITHOUT an equal sign
  9. the horizontal number line on a coordinate grid
  10. a term that is a number all alone
  11. the order in which we solve expressions
  12. greatest common factor
  13. a letter or symbol that represents an unknown number
  14. up and down
  15. math sentence that are not equal using greater than or less than
Down
  1. the number being multiplied to a variable
  2. in algebra they are the parts separated by plus or minus signs
  3. numbers that are multiplied
  4. skip count, the products
  5. math sentence WITH an equal sign
  6. side to side
  7. answer to multiplication problem
  8. answer to subtraction problem
  9. the coordinate grid is separated into these spaces by the x and y axis
  10. the vertical number line on a coordinate grid

25 Clues: up and downside to sideleast common multiplegreatest common factorskip count, the productsanswer to addition problemanswer to division problemnumbers that are multiplieda comparison of two amountsbest 6th grade Math teacheranswer to subtraction problemmath sentence WITH an equal signanswer to multiplication problema term that is a number all alone...

Math 2022-05-23

Math crossword puzzle
Across
  1. turning right
  2. subtraction repeated
  3. bigger or smaller
  4. angles greater than 90 degrees
  5. all three measures are less than 90 that all equal 180
  6. problem with equal sign
  7. value decrease
  8. angle that equals exactly 90 degrees
  9. 90 degree angle
  10. turning
  11. no sides
Down
  1. two sides are equal in a triangle
  2. all 3 sides/angles are equal
  3. equals 180 degrees
  4. increasing values
  5. the same
  6. slides across
  7. no sides or all equal sides
  8. 180 degrees
  9. repeated addition

20 Clues: turningthe sameno sides180 degreesturning rightslides acrossvalue decrease90 degree angleincreasing valuesbigger or smallerrepeated additionequals 180 degreessubtraction repeatedproblem with equal signno sides or all equal sidesall 3 sides/angles are equalangles greater than 90 degreestwo sides are equal in a triangle...

Math 2022-06-07

Math crossword puzzle
Across
  1. H
  2. F
  3. S
  4. N
  5. E
  6. C
  7. J
  8. R
  9. Q
Down
  1. A
  2. I
  3. B
  4. L
  5. G
  6. M
  7. P
  8. O
  9. K
  10. D

19 Clues: AIBHLGFMSPNEOKCJRDQ

Math 2023-03-30

Math crossword puzzle
Across
  1. The quotient of a number
  2. solving for y
  3. every equation can be graphed
  4. The sum of a number
  5. all the lines stay the same
  6. adds or subtracts the arithmetic and geometric
  7. substituting a number and solving it
  8. multiplies and divides
  9. they are less or more than or equal
Down
  1. finding the midpoint on the line
  2. The difference of a number
  3. To eliminate a number
  4. The lines cross on an opposite reciprocal
  5. the product of a number
  6. It goes with distribute, like terms,variables, add or subtract and multiply or divide.
  7. putting the numbers in a square
  8. solving for c
  9. they are less than or more than

18 Clues: solving for ysolving for cThe sum of a numberTo eliminate a numbermultiplies and dividesthe product of a numberThe quotient of a numberThe difference of a numberall the lines stay the sameevery equation can be graphedputting the numbers in a squarethey are less than or more thanfinding the midpoint on the linethey are less or more than or equal...

math 2021-12-16

math crossword puzzle
Across
  1. a shape sliding acroos the the grid
  2. the meeting point of the x and y axis
  3. angle
  4. a shape turning across the grid
  5. rotation reflection traslation
  6. a numbers distance from zero
  7. when two lines never intersect
  8. when two lines
Down
  1. the change of a shapes size
  2. the point plotted on a cordinate plain
  3. when the angles are the same
  4. a shape reflected across a line
  5. same shape and size
  6. how big or large a number is getting
  7. the location of a cordinate pair
  8. the inside of a grid
  9. negative and positive numbers
  10. the outside of a grid

18 Clues: anglewhen two linessame shape and sizethe inside of a gridthe outside of a gridthe change of a shapes sizewhen the angles are the samea numbers distance from zeronegative and positive numbersrotation reflection traslationwhen two lines never intersecta shape reflected across a linea shape turning across the gridthe location of a cordinate pair...

math 2021-12-16

math crossword puzzle
Across
  1. a shape sliding acroos the the grid
  2. the meeting point of the x and y axis
  3. angle
  4. a shape turning across the grid
  5. rotation reflection traslation
  6. a numbers distance from zero
  7. when two lines never intersect
  8. when two lines
Down
  1. the change of a shapes size
  2. the point plotted on a cordinate plain
  3. when the angles are the same
  4. a shape reflected across a line
  5. same shape and size
  6. how big or large a number is getting
  7. the location of a cordinate pair
  8. the inside of a grid
  9. negative and positive numbers
  10. the outside of a grid

18 Clues: anglewhen two linessame shape and sizethe inside of a gridthe outside of a gridthe change of a shapes sizewhen the angles are the samea numbers distance from zeronegative and positive numbersrotation reflection traslationwhen two lines never intersecta shape reflected across a linea shape turning across the gridthe location of a cordinate pair...

Math 2022-04-22

Math crossword puzzle
Across
  1. drawing
  2. this shape can be a rectangle but a rectangle can not be it
  3. dot drawing
  4. triangle drawing 2
  5. opposite of another operation
  6. all sides totaled together
  7. middle number in a set of numbers
  8. 8 sided shape
  9. AC line
Down
  1. 90 degrees
  2. basic structure in which theories are made
  3. drawing
  4. base times height is sued to find what
  5. a square plus b square equals c
  6. any angle over 90 degrees
  7. two dimensional surface that extends infinitely
  8. 2pir is used to find what
  9. all right triangles equal 90 degrees
  10. drawing
  11. dot with line drawing

20 Clues: drawingdrawingdrawingAC line90 degreesdot drawing8 sided shapetriangle drawing 2dot with line drawingany angle over 90 degrees2pir is used to find whatall sides totaled togetheropposite of another operationa square plus b square equals cmiddle number in a set of numbersall right triangles equal 90 degreesbase times height is sued to find what...

Math 2025-01-17

Math crossword puzzle
Across
  1. the point where three bisectors of the interior angles of a triangle intersect
  2. having all its sides of the same length.
  3. at equal distances
  4. joining two opposite corners of a square, rectangle, or other straight-sided shape.
  5. the middle value in a set of data
  6. divides the opposite side into two parts proportional to the other two sides of the triangle.
  7. a quadrilateral whose four sides can be grouped into two pairs of equal-length sides that are adjacent to each other.
  8. a special case of a parallelogram
Down
  1. having equal angles.
  2. a line that bisects another line segment at a right angle, through the intersection point.
  3. opposite sides are parallel.
  4. the point where the perpendicular drawn from the vertices to the opposite sides of the triangle intersect each other
  5. he arithmetic mean position of all the points in the surface of the figure.
  6. a line that passes through two very specific points on a triangle: a vertex, or corner of a triangle, and its opposite side at a right, or 90-degree, angle
  7. a plane figure with four straight sides and four right angles, especially one with unequal adjacent sides, in contrast to a square.
  8. the point at which the three perpendicular bisectors of the sides of a triangle intersect and which is the same distance from each of the three vertices of the triangle
  9. a quadrilateral with only one pair of parallel sides.
  10. plane figure with four equal straight sides and four right angles.

18 Clues: at equal distanceshaving equal angles.opposite sides are parallel.the middle value in a set of dataa special case of a parallelogramhaving all its sides of the same length.a quadrilateral with only one pair of parallel sides.plane figure with four equal straight sides and four right angles....

math 2025-08-25

math crossword puzzle
Across
  1. a geometric transformation that changes the size of a figure by a specific factor, called the scale factor, while preserving its shape
  2. factor the number by which you multiply the dimensions of a shape to enlarge or shrink it, creating a similar figure represented by the letter (K)
  3. changes made to the position, size, or shape of a figure
  4. lines or directions that are perpendicular to a horizontal line or plane
  5. occupy the same relative position
  6. movement in the same direction of timing as the hands of a clock normally take
  7. a geometric transformation that turns a shape or figure around a fixed point, called the center of rotation
  8. vertical number line used in a coordinate plane
  9. the new figure created by a transformation
Down
  1. in a way that is parallel to the ground or to the bottom or top edge of something
  2. having the same size and shape
  3. a transformation that creates a mirror image of a figure across a line, called the line of reflection
  4. a horizontal reference line in a two-dimensional coordinate plane
  5. a movement in the opposite direction of timing as the hands of a clock normally take
  6. the original shape or figure before a geometric transformation
  7. figures are considered similar if they have the same shape, but potentially different sizes
  8. plane the plane containing the x- and y- axes
  9. a rigid transformation that moves every point of a figure the same distance in the same direction

18 Clues: having the same size and shapeoccupy the same relative positionthe new figure created by a transformationplane the plane containing the x- and y- axesvertical number line used in a coordinate planechanges made to the position, size, or shape of a figurethe original shape or figure before a geometric transformation...

math 2026-01-12

math crossword puzzle
Across
  1. The original amount of money invested or borrowed
  2. A measure of how spread out data is
  3. A value far from the rest of the data
  4. The distance around a circle
  5. A graph that shows change over time
  6. Money earned after expenses
  7. The value that appears most often
  8. A regular payment for borrowed money
  9. The average of a data set
  10. A number that tells how many times a base is multiplied
  11. A triangle containing one 90 degree angle
Down
  1. A graph that uses bars to show frequency
  2. A formula relating the sides of a right triangle
  3. The number of times a value occurs
  4. A number multiplied by itself a certain number of times
  5. A ratio comparing sides of a triangle
  6. The middle value when data is ordered
  7. A triangle with all sides equal

18 Clues: The average of a data setMoney earned after expensesThe distance around a circleA triangle with all sides equalThe value that appears most oftenThe number of times a value occursA measure of how spread out data isA graph that shows change over timeA regular payment for borrowed moneyA value far from the rest of the data...

math 2025-01-13

math crossword puzzle
Across
  1. a parallelogram with opposite equal acute angles
  2. a plane figure with four straight sides and four right angles
  3. the height of an object or point in relation to sea level or ground level.
  4. the center point of the object.
  5. the point where the triangle's three perpendicular bisectors intersect.
  6. the point where all the three altitudes of the triangle cut or intersect each other.
  7. An angle bisector or the bisector of an angle is a ray that divides an angle into two equal parts
  8. a quadrilateral with only one pair of parallel sides.
Down
  1. line that bisects another line segment at a right angle, through the intersection point.
  2. having all its sides of the same length.
  3. a four-sided plane rectilinear figure with opposite sides parallel.
  4. a plane figure with four equal straight sides and four right angles.
  5. a quadrilateral whose four sides can be grouped into two pairs of equal-length sides that are adjacent to each other.
  6. at equal distances.
  7. the middle number in a sorted list of numbers
  8. the intersection point of all the three interior angle bisectors of the triangle
  9. two opposite corners of a square
  10. having equal angles.

18 Clues: at equal distances.having equal angles.the center point of the object.two opposite corners of a squarehaving all its sides of the same length.the middle number in a sorted list of numbersa parallelogram with opposite equal acute anglesa quadrilateral with only one pair of parallel sides.a plane figure with four straight sides and four right angles...

Math 2025-03-31

Math crossword puzzle
Across
  1. A type of number that can be expressed as the square of an integer.
  2. A type of triangle where all three sides are equal.
  3. A number that is the product of an integer multiplied by itself.
  4. The smallest factor inside a square root that is a perfect square.
  5. A theorem that states two triangles are congruent if they have two equal angles and one equal side.
  6. A method of proving triangle congruence using three pairs of equal sides.
  7. The symbol used to denote a square root.
  8. The operation that is the opposite of squaring a number.
  9. A type of number that cannot be expressed as a fraction and has an infinite non-repeating decimal.
  10. A postulate stating that if two sides and the included angle of one triangle are congruent to another, then the triangles are congruent.
Down
  1. If two angles of one triangle are equal to two angles of another triangle, then the third angles must also be equal.
  2. A theorem that states the sum of the squares of two legs equals the square of the hypotenuse
  3. The process of rewriting a square root without any perfect square factors.
  4. The longest side of a right triangle.
  5. The process of breaking down a square root into a product of smaller square roots.
  6. A postulate stating that if two angles and the included side of one triangle are congruent to those of another triangle, then the triangles are congruent.
  7. A triangle congruence rule that requires one right angle, hypotenuses, and one leg.
  8. A postulate stating that two triangles are congruent if they have two equal sides and a non-included equal angle.
  9. A method of simplifying radicals by factoring out perfect squares.
  10. A number that has no perfect square factors other than 1.

20 Clues: The longest side of a right triangle.The symbol used to denote a square root.A type of triangle where all three sides are equal.The operation that is the opposite of squaring a number.A number that has no perfect square factors other than 1.A number that is the product of an integer multiplied by itself....

Math 2026-05-19

Math crossword puzzle
Across
  1. angle less than a 90 degree angle
  2. means that a number can be expressed as a fraction
  3. when the event does not happen
  4. the amount 3d shapes hold
  5. an angle measured higher than 90 degrees but lower than 180
  6. the opposite of a whole number
  7. a shape with two congruent circle shaped cross sections
  8. the middle value in a list of numbers
  9. adding the distance all around a shape
Down
  1. the outcome of one thing doesnt do anything to the other
  2. usually a letter to represent a number
  3. a transformation that slides
  4. changing size
  5. also called rise over run
  6. a number with a letter
  7. the average in a list of numbers
  8. a point far away from others
  9. the longest side of a right triangle

18 Clues: changing sizea number with a letteralso called rise over runthe amount 3d shapes holda transformation that slidesa point far away from otherswhen the event does not happenthe opposite of a whole numberthe average in a list of numbersangle less than a 90 degree anglethe longest side of a right trianglethe middle value in a list of numbers...

Math dept 2024-11-26

Math dept crossword puzzle
Across
  1. Most likely to forget where they placed their key for the test
  2. critter that ran across the room when Donna was planning lesson with Mccreesh twenty years ago
  3. deli that Donna would go and pick up our lunch orders every Friday
  4. Junior high that Donna went to
  5. Donna's favorite math director
  6. The amount of land that Donna owns
  7. Teacher who used to play street hockey with Donna's man
  8. Movie that highlighted Donna's wedding song
  9. Teacher most likely to forget they had a student last year
  10. Club that Donna used to head up
  11. Number of students in Donna's topics class last year or number of boyfriend's she had in high school
Down
  1. Most likely to be the cause of every argument
  2. month of Donna's birth
  3. Most likely to turn on the AC in December
  4. Donna's former assistant
  5. math teacher most likely to take over Donna's honors geometry
  6. Sport that Donna's son Mikey played in high school and college
  7. Math teacher most likely to retire next
  8. Period that Donna used to have math tutorial
  9. relative that a student asked Donna if she went to school with
  10. First name of Donna's favorite colleague

21 Clues: month of Donna's birthDonna's former assistantJunior high that Donna went toDonna's favorite math directorClub that Donna used to head upThe amount of land that Donna ownsMath teacher most likely to retire nextFirst name of Donna's favorite colleagueMost likely to turn on the AC in DecemberMovie that highlighted Donna's wedding song...

MSMc2 GM7.U3 vocabulary 2024-10-20

MSMc2 GM7.U3 vocabulary crossword puzzle
Across
  1. -property shown in ab+ac=a(b+c)
  2. -something that you multiply
  3. -Multiplicative property of ___ says we ALWAYS get an answer of 0
  4. -a letter that represents an unknown number
  5. -at most when with an equal
  6. -a number
  7. -factor in front of a variable
  8. -a point that separates possible solutions from those impossible
  9. -isolate the variable
  10. -property shown in a+(b+c)=(a+b)+c
Down
  1. -property that either adds 0 or multiplies by a form of 1
  2. -math sentence that defines the value of a variable
  3. -a math sentence with an =
  4. -Property that says do same thing to both sides
  5. -a math sentence that has multiple solutions
  6. -a math phrase with numbers, variables, and operations
  7. -same variable to the same exponent
  8. -property shown in abc=cab
  9. -part of an expression separated by a +
  10. -Indicates we will get a numeric answer
  11. -Operation that undoes another operation
  12. -direction that means you Combine Like Terms
  13. –direction that tells you to use a <, =, or > symbol
  14. -at least when with an equal to

24 Clues: -a number-isolate the variable-a math sentence with an =-property shown in abc=cab-at most when with an equal-something that you multiply-factor in front of a variable-property shown in ab+ac=a(b+c)-at least when with an equal to-property shown in a+(b+c)=(a+b)+c-same variable to the same exponent-part of an expression separated by a +...

Math 2018-12-13

Math crossword puzzle
Across
  1. ^6
  2. strong
  3. 0.5555555
  4. The end of equation of subraction
  5. not repeating
  6. The end of equation of multiplication
  7. normal, average
  8. not a whole number
  9. lowest part of an edge
  10. 2
  11. The end of equation of addition
  12. The end of equation of multiplication
Down
  1. 1x10^3
  2. not a fraction
  3. cant be expressed as a ratio
  4. word comes from ratio
  5. consists of 1 term
  6. 0.05
  7. has x or y in it

19 Clues: 2^60.051x10^3strong0.5555555not repeatingnot a fractionnormal, averagehas x or y in itconsists of 1 termnot a whole numberword comes from ratiolowest part of an edgecant be expressed as a ratioThe end of equation of additionThe end of equation of subractionThe end of equation of multiplicationThe end of equation of multiplication

math 2021-12-16

math crossword puzzle
Across
  1. a shape sliding acroos the the grid
  2. the meeting point of the x and y axis
  3. angle
  4. a shape turning across the grid
  5. rotation reflection traslation
  6. a numbers distance from zero
  7. when two lines never intersect
  8. when two lines
Down
  1. the change of a shapes size
  2. the point plotted on a cordinate plain
  3. when the angles are the same
  4. a shape reflected across a line
  5. same shape and size
  6. how big or large a number is getting
  7. the location of a cordinate pair
  8. the inside of a grid
  9. negative and positive numbers
  10. the outside of a grid

18 Clues: anglewhen two linessame shape and sizethe inside of a gridthe outside of a gridthe change of a shapes sizewhen the angles are the samea numbers distance from zeronegative and positive numbersrotation reflection traslationwhen two lines never intersecta shape reflected across a linea shape turning across the gridthe location of a cordinate pair...

Math 2022-03-04

Math crossword puzzle
Across
  1. A line that is not strength but at an angle
  2. Zero, infinity
  3. Something entirely together
  4. A curved line that doesn’t touch zero
  5. Where two lines meet
  6. change of one thing to another
  7. Mirror effect in a graft
  8. a
  9. Bottom number of a fraction
  10. a
Down
  1. A>1
  2. a
  3. Translation of one thing in a different manner
  4. Line facing East and west
  5. Negative infinity, zero
  6. direction of infinity
  7. Making a solution smaller
  8. 0<a<1
  9. s
  10. Logical numbers

20 Clues: aasaA>10<a<1Zero, infinityLogical numbersWhere two lines meetdirection of infinityNegative infinity, zeroMirror effect in a graftLine facing East and westMaking a solution smallerSomething entirely togetherBottom number of a fractionchange of one thing to anotherA curved line that doesn’t touch zeroA line that is not strength but at an angle...

Math 2021-12-05

Math crossword puzzle
Across
  1. it is a statement that equates twi ratios or rates.
  2. finf first number:3(x-5)>39
  3. it is a and b is the smallest number that is a multiple of a and b.
  4. The mesaure of how heavy something is.
  5. A ratio or fraction with the denominator 100.
  6. solve:√24+2√27+6√3-√3=?
  7. A procesure or set of steps used to solve a mathematical computation.
  8. A quadrilateral with two sets of opposite sides that are parallel.
Down
  1. A(1;1) B(1;4) C(4;4) D(4;1) which figure is obtained if we combine these points?
  2. A point that is exactly halfway between two locations.
  3. The top number in a fraction.
  4. if one of the consecutive angles is 40°. Find another angle.
  5. y=kx+b what is "k"?
  6. find the square root of 144.
  7. A real number on the base ten standard numbering system.
  8. A whole number taht id not divisible by 2.
  9. A play graund is 60m long and 40m wide. How much distance does a girl run when she runs 5 times around the playground?
  10. Go on forever in one direction.

18 Clues: y=kx+b what is "k"?solve:√24+2√27+6√3-√3=?finf first number:3(x-5)>39find the square root of 144.The top number in a fraction.Go on forever in one direction.The mesaure of how heavy something is.A whole number taht id not divisible by 2.A ratio or fraction with the denominator 100.it is a statement that equates twi ratios or rates....

Math 2023-04-27

Math crossword puzzle
Across
  1. , The sum of 2 different terms.
  2. , Form of adding value of its digits.
  3. , Set of all possible values.
  4. , Branching Structure, Connecting different processes.
  5. , Probability an event will occur.
  6. One or more outcomes in an experiment.
  7. , Value depends on what you put into a function.
  8. , The number of possible arrangements.
  9. , One event - means another can't occur.
  10. , Technique that determines the number of possible arrangements.
Down
  1. , One event occurs if another doesn't.
  2. , Triangle arrangement of coefficients.
  3. , Formula for finding any power of binomial
  4. The product of an integer.
  5. , Fixed numbers of independent trials - only 2 outcomes.
  6. , Probability of occurrence of A and B.
  7. , Possible result of an experiment.
  8. , Events with more than one sample point.

18 Clues: The product of an integer., Set of all possible values., The sum of 2 different terms., Probability an event will occur., Possible result of an experiment., Form of adding value of its digits., One event occurs if another doesn't.One or more outcomes in an experiment., The number of possible arrangements., Triangle arrangement of coefficients....

math 2022-11-14

math crossword puzzle
Across
  1. gurbei
  2. gurhegk
  3. variable gbe
  4. of change jf
  5. ghrieh
  6. grihg
  7. fjsknfwengihr
  8. gnr
  9. function fnjwen
Down
  1. hgureb
  2. variable ghireohga
  3. bfekjbqg
  4. nsje
  5. fh
  6. gruejbg
  7. ghruhg
  8. pair gnrjrn
  9. bgrubegb

18 Clues: fhgnrnsjegrihghgurebgurbeighriehghruhggurhegkgruejbgbfekjbqgbgrubegbpair gnrjrnvariable gbeof change jffjsknfwengihrfunction fnjwenvariable ghireohga

math 2024-05-07

math crossword puzzle
Across
  1. Christmas
  2. formm
  3. start
  4. Pool party
  5. Likes to chase mice
  6. Man's best friend
  7. Flying mammal
  8. easter
  9. Has a trunk
  10. autum
  11. Eyyyee
Down
  1. springy
  2. spring
  3. Large marsupial
  4. summer
  5. weee
  6. Halloween
  7. swimm

18 Clues: weeeformmstartswimmautumspringsummereasterEyyyeespringyChristmasHalloweenPool partyHas a trunkFlying mammalLarge marsupialMan's best friendLikes to chase mice

Math 2024-09-27

Math crossword puzzle
Across
  1. has greater than(or equal to) or less than(or equal to) signs
  2. The opposite of ^2
  3. breaking down to understand
  4. x values
  5. An amount going up by a consistent value
  6. A Formula that uses a coordinate (starts with s)
  7. An amount going down by a consistent value
  8. Verify
  9. Incline
  10. y values
Down
  1. the moving of a shape or line on a graph
  2. A Function going up or down by a consistent value
  3. An area on the circumference of a circle or a curve on a graph
  4. A curved line on a graph
  5. A Formula that uses a coordinate (starts with v)
  6. Not 2,8,12
  7. Nothing
  8. the value of a number from zero

18 Clues: VerifyNothingInclinex valuesy valuesNot 2,8,12The opposite of ^2A curved line on a graphbreaking down to understandthe value of a number from zerothe moving of a shape or line on a graphAn amount going up by a consistent valueAn amount going down by a consistent valueA Formula that uses a coordinate (starts with v)...

math 2025-01-16

math crossword puzzle
Across
  1. a parallelogram with opposite equal acute angles, opposite equal obtuse angles, and four equal sides.
  2. a plane figure with four straight sides and four right angles, especially one with unequal adjacent sides, in contrast to a square.
  3. the height of an object or point in relation to sea level or ground level.
  4. the center of mass of a geometric object of uniform density.
  5. a point equidistant from all three vertices and defined as the point where the triangle's three perpendicular bisectors intersect
  6. the point of concurrency of the three altitudes of a triangle
  7. a line that splits an angle into two equal angles.
  8. a quadrilateral with only one pair of parallel sides.
Down
  1. a line that bisects a line segment in two equal parts and makes an angle of 90 degrees at the point of intersection
  2. having all its sides of the same length.
  3. a four-sided plane rectilinear figure with opposite sides parallel.
  4. a plane figure with four equal straight sides and four right angles.
  5. a quadrilateral with reflection symmetry across one of its diagonals.
  6. at equal distances.
  7. the middle number in a sorted list of numbers
  8. the center of the incircle of a triangle or other figure.
  9. (of a straight line) joining two opposite corners of a square, rectangle, or other straight-sided shape.
  10. having equal angles.

18 Clues: at equal distances.having equal angles.having all its sides of the same length.the middle number in a sorted list of numbersa line that splits an angle into two equal angles.a quadrilateral with only one pair of parallel sides.the center of the incircle of a triangle or other figure.the center of mass of a geometric object of uniform density....

math 2021-12-16

math crossword puzzle
Across
  1. a shape sliding acroos the the grid
  2. the meeting point of the x and y axis
  3. angle
  4. a shape turning across the grid
  5. rotation reflection traslation
  6. a numbers distance from zero
  7. when two lines never intersect
  8. when two lines
Down
  1. the change of a shapes size
  2. the point plotted on a cordinate plain
  3. when the angles are the same
  4. a shape reflected across a line
  5. same shape and size
  6. how big or large a number is getting
  7. the location of a cordinate pair
  8. the inside of a grid
  9. negative and positive numbers
  10. the outside of a grid

18 Clues: anglewhen two linessame shape and sizethe inside of a gridthe outside of a gridthe change of a shapes sizewhen the angles are the samea numbers distance from zeronegative and positive numbersrotation reflection traslationwhen two lines never intersecta shape reflected across a linea shape turning across the gridthe location of a cordinate pair...

math 2021-12-16

math crossword puzzle
Across
  1. the location of a cordinate pair
  2. same shape and size
  3. a numbers distance from zero
  4. the outside of a grid
  5. negative and positive numbers
  6. the change of a shapes size
  7. a shape reflected across a line
  8. how big or large a number is getting
  9. when the angles are the same
  10. when two lines
Down
  1. the point plotted on a cordinate plain
  2. the meeting point of the x and y axis
  3. a shape turning across the grid
  4. the inside of a grid
  5. when two lines never intersect
  6. angle
  7. rotation reflection traslation
  8. a shape sliding acroos the the grid

18 Clues: anglewhen two linessame shape and sizethe inside of a gridthe outside of a gridthe change of a shapes sizea numbers distance from zerowhen the angles are the samenegative and positive numberswhen two lines never intersectrotation reflection traslationa shape turning across the grida shape reflected across a linethe location of a cordinate pair...

Math 2018-11-02

Math crossword puzzle
Across
  1. the total amount resulting from the addition of two or more numbers, amounts, or items
  2. lengthxwidthxheight
  3. lengthxwidth
  4. a numerical quantity that is not a whole number (e.g. 1/2, 0.5)
  5. a number by which another number is to be divided
  6. the answer to a subtraction problem
  7. length+length+width+width
  8. the process or skill of multiplying
  9. 0.0001
  10. distance equal to 12 inches
Down
  1. a shape with 4 sides
  2. a numerical term or symbol
  3. the product of 2x2x2x2x2x2x2x2
  4. a number with one left out(e.g 17, 29, 1)
  5. a math game(starts with p)
  6. 90º angle
  7. long addition form of a number (e.g.100+60+3)
  8. relating to or denoting a system of numbers and arithmetic based on the number ten, tenth parts, and powers of ten:

18 Clues: 0.000190º anglelengthxwidthlengthxwidthxheighta shape with 4 sideslength+length+width+widtha numerical term or symbola math game(starts with p)distance equal to 12 inchesthe product of 2x2x2x2x2x2x2x2the answer to a subtraction problemthe process or skill of multiplyinga number with one left out(e.g 17, 29, 1)...

Math 2016-01-03

Math crossword puzzle
Across
  1. T6
  2. S1
  3. S3
  4. S5
  5. T9
  6. T5
  7. S10
  8. T7
  9. S9
Down
  1. S8
  2. T4
  3. T10
  4. S7
  5. T8
  6. S2
  7. T1
  8. S6
  9. S4
  10. T2
  11. T3

20 Clues: S8T6T4S7S1T8S2S3T1S5T9T5S6S4T2T7T3S9T10S10

Math 2023-10-24

Math crossword puzzle
Across
  1. Illustration of a relation
  2. The points where a function crosses the x-axis
  3. The y-axis is ________
  4. a relation where each domain pairs with one range
  5. The type of graph with a line or curve
  6. The x-axis is ___________
  7. Where the x and y axis intersect
  8. The most 'angelic' person in the class.
  9. The best Junior in the class
  10. The type of graph full of unconnected points
Down
  1. A value substituted for an x-value
  2. The person with the most patience because he sits near Brandon.
  3. The result of substituting a value into a function
  4. A set of ordered pairs
  5. The set of second numbers in a relation
  6. The set of first numbers in a relation
  7. This is a plan formed by intersecting axis.
  8. The regions of a coordinate plane

18 Clues: A set of ordered pairsThe y-axis is ________The x-axis is ___________Illustration of a relationThe best Junior in the classWhere the x and y axis intersectThe regions of a coordinate planeA value substituted for an x-valueThe set of first numbers in a relationThe type of graph with a line or curveThe set of second numbers in a relation...

MATH 2024-01-19

MATH crossword puzzle
Across
  1. The name of a racing game
  2. Middle of scores
  3. Outside of a prism
  4. C=√a²+b²
  5. Math of shapes
  6. X,Y,Z
  7. S,A,S or S,S,S
  8. Most appearing score
  9. Range of scores
Down
  1. mm, cm, m, km
  2. A survey swayed to one side
  3. inch, foot, yard, mile
  4. The name of a very popular math teacher
  5. A,S,S or A,A,S
  6. Unit of Triangles
  7. Not a speaker
  8. Average of scores
  9. the amount of bend between two lines

18 Clues: X,Y,ZC=√a²+b²mm, cm, m, kmNot a speakerA,S,S or A,A,SMath of shapesS,A,S or S,S,SRange of scoresMiddle of scoresUnit of TrianglesAverage of scoresOutside of a prismMost appearing scoreinch, foot, yard, mileThe name of a racing gameA survey swayed to one sidethe amount of bend between two linesThe name of a very popular math teacher

Math 2022-06-07

Math crossword puzzle
Across
  1. H
  2. F
  3. S
  4. N
  5. E
  6. C
  7. J
  8. R
  9. Q
Down
  1. A
  2. I
  3. B
  4. L
  5. G
  6. M
  7. P
  8. O
  9. K
  10. D

19 Clues: AIBHLGFMSPNEOKCJRDQ

Math 2024-03-28

Math crossword puzzle
Across
  1. slope.
  2. root, Undos the power of 2
  3. expression into a number.
  4. dependent variable multiplies at a constant rate.
  5. the same variables.
  6. notation, Another way of expressing solution sets.
  7. in its simplest form.
  8. represents a range of solutions.
  9. lines,Two lines are perpendicular if and only if they
Down
  1. lines, Two lines are parallel if and only if they have the
  2. opposite reciprocal slopes.
  3. Use order of operations to turn a
  4. function, A nonlinear equation where as
  5. Use distribution, combining like
  6. independent variable increases at a constant rate,
  7. of equations,A group of 2 or more equations that
  8. and other math methods to make an
  9. to a system,Usually an ordered pair ( x, y). It
  10. to be a solution to EVERY equation in the system.

19 Clues: slope.the same variables.in its simplest form.expression into a number.root, Undos the power of 2opposite reciprocal slopes.Use distribution, combining likerepresents a range of solutions.Use order of operations to turn aand other math methods to make anfunction, A nonlinear equation where asto a system,Usually an ordered pair ( x, y). It...

math 2024-05-07

math crossword puzzle
Across
  1. Sequence - S
  2. - 13
  3. - 3
  4. form - N
  5. - 10
  6. rectangle - 33
  7. form - 45
  8. - t
  9. - 2
Down
  1. - 77
  2. - 11
  3. - i
  4. Method - M
  5. line
  6. - D
  7. - E
  8. - 12
  9. Equation - e

18 Clues: - i- 3- D- E- t- 2- 77- 11- 13line- 12- 10form - Nform - 45Method - MSequence - SEquation - erectangle - 33

math 2024-09-17

math crossword puzzle
Across
  1. What type of number does a negative discriminant tell you about the nature of the roots?
  2. Whats the standard form of a^2 - 9 = 7r
  3. Whats the a b and c of 5x + 7 =16x^2
  4. wWhats the standard form of 27 - 10x^2=3x.
  5. If the discriminant is real, rational, unequal, the number is?
  6. What mathematical operation is used in the discriminant formula?
  7. Find the x1 and x2 of x²−4x+3=0
Down
  1. Whats the a, b, and c of 3r^2-8r+20=0
  2. What is -400 in Discriminant?
  3. Whats the standart form of 5 - 7x = 37x^2.
  4. What power does the discriminant formula involve?
  5. An imaginary unit number that is denoted by i.
  6. What does the ± symbol indicate in the quadratic formula?
  7. Factor x² - 10x + 25 = 0 using perfect square trinomial.
  8. Whats the standard form of 9b +26b^2=8
  9. If the discriminant is real, rational, unequal, the number is?
  10. Whats the a, b and c of 6x^2 +9x+48=0
  11. Square What is 225 in Discriminant?
  12. What is 168 in Discriminant?
  13. If the discriminant is less than 0, the number is?

20 Clues: What is 168 in Discriminant?What is -400 in Discriminant?Find the x1 and x2 of x²−4x+3=0Square What is 225 in Discriminant?Whats the a b and c of 5x + 7 =16x^2Whats the a, b, and c of 3r^2-8r+20=0Whats the a, b and c of 6x^2 +9x+48=0Whats the standard form of 9b +26b^2=8Whats the standard form of a^2 - 9 = 7r...

math 2024-12-12

math crossword puzzle
Across
  1. n
  2. b
  3. c
  4. a
  5. r
  6. j
  7. i
  8. k
  9. m
  10. p
Down
  1. l
  2. o
  3. q
  4. d
  5. f
  6. e
  7. h
  8. g

18 Clues: lonbcqadfrjeihkmgp

Crossword Puzzel 2021-03-30

Crossword Puzzel crossword puzzle
Across
  1. orchestra teacher
  2. 7th and 8th grade gym teacher
  3. 5th grade math teacher
  4. 7th grade ELA teacher
  5. band teacher
  6. 7th and 8th grade history teacher
  7. 7th and 8th grade math teacher
Down
  1. 5th and 6th grade science teacher
  2. 6th grade ELA teacher
  3. 8th grade ELA teacher
  4. 7th and 8th grade art teacher
  5. 7th and 8th grade science teacher
  6. 5th and 6th grade social studies teacher
  7. 5th grade ELA teacher
  8. 6th grade math teacher

15 Clues: band teacherorchestra teacher6th grade ELA teacher8th grade ELA teacher7th grade ELA teacher5th grade ELA teacher5th grade math teacher6th grade math teacher7th and 8th grade gym teacher7th and 8th grade art teacher7th and 8th grade math teacher5th and 6th grade science teacher7th and 8th grade science teacher7th and 8th grade history teacher...

Math 2021-02-27

Math crossword puzzle
Across
  1. Shapes that have 4 sides?
  2. WHo is your teacher?
  3. A spesific spot?
  4. A line that cuts a shape into 2 halves?
  5. Angle less that 90 degrees?
  6. A closed figure having 3 sides?
  7. A 90 degree angle?
  8. Lines that meet at a 90 degree angle?
Down
  1. Like a corner?
  2. Lines that never meet or touch?
  3. Whats this subject?
  4. Lines that meet?
  5. Angle more than 90 degrees?
  6. A triangle with 3 equal sides/angles?
  7. A triangle that has no equal sides/angle?
  8. 2 rays having the same end point?
  9. A line that continues only 1 way?
  10. Something that you use to measure an angle?

18 Clues: Like a corner?Lines that meet?A spesific spot?A 90 degree angle?Whats this subject?WHo is your teacher?Shapes that have 4 sides?Angle more than 90 degrees?Angle less that 90 degrees?Lines that never meet or touch?A closed figure having 3 sides?2 rays having the same end point?A line that continues only 1 way?A triangle with 3 equal sides/angles?...

Math 2018-05-24

Math crossword puzzle
Across
  1. the average
  2. when letters represent numbers
  3. part of a whole
  4. as small as it will go
  5. the space inside a shape
  6. a number with a point
  7. out of 100
  8. all the way around a shape
  9. angles that add to 180 degrees
  10. all the way across the circle
  11. when something can never happen
Down
  1. the number used the most
  2. the middle number
  3. 3 sided shape
  4. all the way around the circle
  5. angles that add up to 90 degrees
  6. 4 sided shape
  7. 3.141592...

18 Clues: out of 100the average3.141592...3 sided shape4 sided shapepart of a wholethe middle numbera number with a pointas small as it will gothe number used the mostthe space inside a shapeall the way around a shapeall the way around the circleall the way across the circlewhen letters represent numbersangles that add to 180 degrees...

math 2024-05-07

math crossword puzzle
Across
  1. Christmas
  2. formm
  3. start
  4. Pool party
  5. Likes to chase mice
  6. Man's best friend
  7. Flying mammal
  8. easter
  9. Has a trunk
  10. autum
  11. Eyyyee
Down
  1. springy
  2. spring
  3. Large marsupial
  4. summer
  5. weee
  6. Halloween
  7. swimm

18 Clues: weeeformmstartswimmautumspringsummereasterEyyyeespringyChristmasHalloweenPool partyHas a trunkFlying mammalLarge marsupialMan's best friendLikes to chase mice

Math 2023-03-30

Math crossword puzzle
Across
  1. The quotient of a number
  2. solving for y
  3. every equation can be graphed
  4. The sum of a number
  5. all the lines stay the same
  6. adds or subtracts the arithmetic and geometric
  7. substituting a number and solving it
  8. multiplies and divides
  9. they are less or more than or equal
Down
  1. finding the midpoint on the line
  2. The difference of a number
  3. To eliminate a number
  4. The lines cross on an opposite reciprocal
  5. the product of a number
  6. It goes with distribute, like terms,variables, add or subtract and multiply or divide.
  7. putting the numbers in a square
  8. solving for c
  9. they are less than or more than

18 Clues: solving for ysolving for cThe sum of a numberTo eliminate a numbermultiplies and dividesthe product of a numberThe quotient of a numberThe difference of a numberall the lines stay the sameevery equation can be graphedputting the numbers in a squarethey are less than or more thanfinding the midpoint on the linethey are less or more than or equal...