Stage 21: Artist: Patterns

Slides:



Advertisements
Similar presentations
Section 1.4 Complex Numbers
Advertisements

Programming for Artists ART 315 Dr. J. R. Parker Art/Digital Media Lab Lec 13 Fall 2010.
Prime Factorization Section 2.5. Objectives Find the prime factorization of a counting number by repeated division Find the prime factorization of a counting.
Divide and Conquer Adaptive Components in Revit v2013
Estimating Surface Area The art of math…. Estimating the Surface Area of 3-D Objects  You can’t always get an exact answer when looking for the surface.
Repetition. Examples When is repetition necessary/useful?
M5G2 – Students will understand the relationship of the circumference of a circle, its diameter, and pi (pi ≈ 3.14)
Unit 2 Present Progressive and Simple Present. Unit 2 Present Progressive and Simple Present 2 Present Progressive.
Patterns. PATTERNS A pattern constitutes a set of numbers or objects in which all the members are related with each other by a specific rule. It is also.
Advanced Decisions and Loops Chapter Some Simple Schoolroom Statistics.
Fraction Patterns Task 1 Task 2 Task 3 Task 4 Task 5 Task 6 Task 7
Divisors and Factors Section 2.3. Objectives Write a counting number as the product of two factors in all possible ways List all of the factors (divisors)
In this investigation you will look at the moves a Knight from a chess set might make on a 100 square.
1 Multiples Stage 4 Year 7 Press Ctrl-A ©2009 – Not to be sold/Free to use.
Section 12.6 – Area and Arclength in Polar Coordinates
For Loops 2 ENGR 1181 MATLAB 9. For Loops and Looped Programming in Real Life As first introduced last lecture, looping within programs has long been.
Section 6.1 Notes Special Angles of the Unit Circle in degrees and radians.
Nested for loops.
Lecture 7: Menus and getting input. switch Multiple-selection Statement switch Useful when a variable or expression is tested for all the values it can.
Sections 2-6 and 2-8 (We combined two because we are that cool!) There will be a quiz on both of these Wednesday!
Repeating patterns Can you work out the next shape in the pattern?
Cracking the Code WHAT WORKS WHEN TEACHING STUDENTS TO CODE?
Conjugate Pairs Theorem Every complex polynomial function of degree n  1 has exactly n complex zeros, some of which may repeat. 1) A polynomial function.
1 BUILDING JAVA PROGRAMS CHAPTER 2 PRIMITIVE DATA AND DEFINITE LOOPS.
Learning Objectives 1. Understand how the Small Basic Turtle operates. 2. Be able to draw geometric patterns using iteration.
Just What Is… “Close reading”.
5 Minute Check Complete in your notebook. Find
Stage 3: Artist What do you remember from the last class?
11.6 Areas of Circles, Sectors, and Segments
Model Multiplication Name: _______________________________
Python Loops and Iteration
Factors and Primes.
Stage 11: Artist: Nested Loops
Get a piece of drawing paper and a pencil and face the front.
Chapter 5 Decisions. Chapter 5 Decisions ssential uestion: How are Boolean expressions or operators used in everyday life?
Topics discussed in this section:
Just What Is… “Close reading”.
Review Slides for Final on May 30th
Model Multiplication Name: _______________________________
Section 2.1 Complex Numbers
Section 1.4 Complex Numbers
I SPY… with my little eye
Statistics 1: Elementary Statistics
Multiplying & Dividing Integers
Stage 8: Maze: Conditionals
Perimeters and areas of composite figures
Stage 14: Bee: Debugging What is debugging?
Section 12.6 – Area and Arclength in Polar Coordinates
Stage 7 Artist: Loops.
Any type of vibration can be defined by
Exponents, Parentheses, and the Order of Operations
KS1 Calculation.
Times.
Loops.
Just What Is… “Close reading”.
How to repeat information outside of a function!
2 Activity 1: 5 columns Write the multiples of 2 into the table below. What patterns do you notice? Colour the odd numbers yellow and the even numbers.
Stage 6 Maze: Loops.
Print the following triangle, using nested loops
STRATEGIES FOR MULTIPLICATION
Task 3: Three numbers Circle two dice that add to make 6
( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , ) ( , )
Activity 1: 5 columns Write the multiples of 3 into the table below. What patterns do you notice? Colour the odd numbers yellow and the even numbers blue.
Activity 1: 5 columns Write the multiples of 9 into the table below. What patterns do you notice? Colour the odd numbers yellow and the even numbers blue.
What are different ways to show fractions?
If-Statements and If/Else Statements
What has happened to this number to get to 7.5?
Close Reading Stretegies
Can you work out the next shape in the pattern?
Can you work out the next shape in the pattern?
Presentation transcript:

Stage 21: Artist: Patterns http://www.tbsrj.com.br/blog/

Objectives Students will: Count the number of times an action should be repeated and represent it as a loop Divide the number of degrees in a circle into even segments Given a number of segments, calculate the degrees need to complete a circle Break complex tasks into smaller repeatable sections Combine simple shapes into complex designs with nested loops Compose complex patterns from multiple nested loops

Example for (var count = 0; count < 4; count++) { }

Example for (var count = 0; count < 3; count++) { moveForward(50); turnRight(120); moveForward(50); turnRight(60); }

Directions Complete Stage 21: Artist: Patterns Progress your way through the stage