“Relating Geometric Figures to Writing Code in NetLogo”

Slides:



Advertisements
Similar presentations
……+(4n-3) = n(2n-1) P 1 = 1(2(1)-1)=1 check.
Advertisements

Attacking the ACT Mathematics Test Cano. The mathematics section of the ACT test is designed to measure the mathematics knowledge and skills that you.
Scale Drawings Today you will learn to: identify similar figures
3.1 What are congruent figures? Objective: After studying this lesson you will be able to understand the concept of congruent figures and accurately identify.
Geometric Probability
P247. Figure 9-1 p248 Figure 9-2 p251 p251 Figure 9-3 p253.
Computer Science: A Structured Programming Approach Using C1 Objectives ❏ To understand the structure of a C-language program. ❏ To write your first C.
Graphing Linear Equations in Two Variables The Graph of a linear equation in two variables is the graph of all the ordered pairs (x,y) that satisfy the.
EXAMPLE 3 Solve a real-world problem Structural Support Explain why the bench with the diagonal support is stable, while the one without the support can.
Holt Algebra 2 6 Objective REVIEW 2 Objective Holt Algebra 2 Warm Up Warm Up Lesson Presentation Lesson Presentation Lesson Quiz Lesson Quiz.
New Mexico Computer Science For All More Looping in NetLogo Maureen Psaila-Dombrowski.
Geometry: Geometric Proof Introduction Chapter 2: Logic.
4 Steps to Problem Solving.. UNDERSTANDING THE PROBLEM Can you state the problem in your own words? What are you trying to find or do? What are the unknowns?
Introduction to Programming with Java. Overview What are the tools we are using – What is Java? This is the language that you use to write your program.
computer
Introduction to Perimeter, Circumference and Area
Proving Quadrilateral Properties. The firefighter below asks another firefighter to turn on one of the water hydrants. But which one? A mistake could.
Note 7: Cyclic Quadrilaterals. A cyclic quadrilateral has all four vertices on a circle. (concyclic points) Opposite angles of a cyclic quadrilateral.
Unit Summary  The right triangle is one of the most important geometrical figures, used in many applications for thousands of years. This unit focuses.
The New Curriculum What does it mean for your child?
Class Opener 1 – 18 – 12: The diagonals of a quadrilateral are perpendicular bisectors of each other. What is the name that best describes the quadrilateral?
GET CONNECTED Information Technology Career Cluster.
How can you draw shapes when only given lengths of sides?
Brackets An introduction to using brackets in algebra.
Section 9-1 An Introduction to Matrices Objective: To perform scalar multiplication on a matrix. To solve matrices for variables. To solve problems using.
Math Masters Explore and Learn Centers Jill Gilmore-Lewis.
FINDING THE AREA OF SPECIAL QUADRILATERALS JANUARY 21, 2015.
Alice and Java Unit 7 1. Day 1  Objective: Gain an introduction to Java and Eclipse  Essential skill: DM-1: Use technology to advance critical thinking.
JavaScript Errors and Debugging Web Design Sec 6-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development.
Geometry 1.1 Let’s Get This Started!.
서울대한양대 ( 안 산 ) 충남대 1년1년 컴퓨터기초 (C) 컴퓨터프로그래밍 (C, Java) 컴퓨터프로그래밍 (C) 2. 봄 프로그래밍 원리 (Scheme, ML) Structure & Interpretation of Computer Programs 프로그래밍 방법론.
Intro to Proofs Unit IC Day 2. Do now Solve for x 5x – 18 = 3x + 2.
5.1 5 Geometry for Drafting Chapter Objectives Identify geometric shapes and constructions used by drafters. Construct various geometric shapes. Solve.
WARM UP Solve the systems: 1. 2x + 4y = x – 2y = 11 2x + 3y = 31 4x – 3y = 13 2x + 3y = 31 4x – 3y = 13 (11, 3) (7, 5)
Geometry: Section 2.4 Algebraic Reasoning. What you will learn: 1. Use Algebraic Properties of Equality to justify the steps in solving an equation. 2.
BIS 220 Introduction to Computer Application and Systems Check this A+ tutorial guideline at 220/BIS-220-Complete-Class-Guide.
3.1 What are congruent figures?
Tangram Activity for Area and Perimeter
Scale Drawings 7.G.1 Solve problems involving scale drawings of geometric figures, including computing actual lengths and areas from a scale drawing and.
“Drawing Regular Polygons Using NetLogo”
Do it now activity Last lesson we used Flowol to create a solution to a problem a computer could solve. Identify what each symbol does:
Do-Now Find the value of x. A = 20 A = 35 x 4 x – 2 2x 3x A =
Desktop Publishing (DTP)
Concepts of Engineering and Technology Introduction to Problem Solving
Introduction to Perimeter, Circumference and Area
Section 6.6 Polygons in the Coordinate Plane
1.7 Introduction to Perimeter, Circumference, & Area
Introduction to the C Language
Chapter 2 – Getting Started
Solve: 1. 4<
Introduction to Geometry – Postulates and Theorems
1-8 Check Skills.
Spot the Mistake – Expanding Double Brackets
Class Greeting.
1.7: Solve Absolute Value Equations
Splash Screen.
Lines, shapes and coordinates
Ecosystem Biome Checking For Understanding: - Students solve page 76 number 11 where they have to build the levels of organization in the savanna.
9.2 REFLECTIONS.
Polygons Objective: Learn to classify polygons.
Points, Lines, and Planes
5. Shape and Angles.
Maintenance Sheet 21 via Study Island- Due Friday
Math Humor Customer: How much are two eggs? Waitress: $1.75 Customer: How much is one egg? Waitress: $1.50 Customer: Then I’ll have the other one.
To Ms. Billerbeck’s Integrated Math 1 Class
Homework- Study Island- Due Friday & Parent Letter Due
Delete unwanted questions.
Maintenance Sheet 21 via Study Island- Due Friday
Enlargement – Mixed – Higher – Demonstration
Presentation transcript:

“Relating Geometric Figures to Writing Code in NetLogo” Summary: Students will use the computer program NetLogo to gain an insight into using logical reasoning skills with geometric shapes. They will first be given a step-by-step introduction to NetLogo, then create geometric figures using the program. Objectives: Write basic codes in NetLogo Create quadrilaterals using NetLogo Create complex shapes and drawings using NetLogo Use logical reasoning to solve complex proof-like problems

NetLogo Common Mistakes Double and triple check your spelling! Parenthesis and brackets If you start one, you must end it! Space between a number and an operation 6*7 will not work… 6 * 7 will work ;; is for comments The program will not read words after them