Open on the student drive

Slides:



Advertisements
Similar presentations
Coding. Steps to Success 1.Create a PLAN including a detailed statement of requirements (SORs) 2.Write algorithms based on the SORs 3.Write pseudocode.
Advertisements

Ch 8 - Rational & Radical Functions 8.5 – Solving Rational Equations.
C OMPUTER P ROGRAMMING 1 Introduction to Programming.
Problem Solving in Physics Dawson High School Physics.
Develop Effective Products and Services
As Class Convenes l Find your team’s table and have a seat l Pick up Team’s Modeling Folder l Remove Chapter 1 Assignment l Place your Chapter 2 Assignment.
CS221 Algorithm Basics. What is an algorithm? An algorithm is a list of instructions that transform input information into a desired output. Each instruction.
Algorithms & FlowchartsLecture 10. Algorithm’s CONCEPT.
Program Design. The design process How do you go about writing a program? –It’s like many other things in life Understand the problem to be solved Develop.
Solving problem choosing solution way implementing schedule gathering information scheduling solution Event perceiving problem learning chosen way finding.
How to Program? -- Part 1 Part 1: Problem Solving –Analyze a problem –Decide what steps need to be taken to solve it. –Take into consideration any special.
Module 2.9 Solving Addition Word Problems. In your group create a story problem to match your assigned equation. How do you know that the story matches.
Ways to act like a computer scientist. Be curious Look at different menus Run code to see what happens Check the effects of different settings Answer.
The Scientific Method 5 Steps to Follow!.
Warm-up. Systems of Equations: Substitution Solving by Substitution 1)Solve one of the equations for a variable. 2)Substitute the expression from step.
Notes Over 3.1 Solving a System Graphically Graph the linear system and estimate the solution. Then check the solution algebraically.
Problem Solving.  Similar to Solving Math Word Problem  Read the Problem  Decide how to go about Solving the Problem  Solve the Problem  Test the.
ELIMINATION AND GRAPHING Systems of Nonlinear Equations.
The Need for Algorithms
10 Stages Of the Engineering Design Process
Algorithms and Problem Solving
Python 23 Mr. Husch.
7.6 Solving Radical Equations
name of trainer associate trainer | sparqs
Unit 3 lesson 2&3 The Need For Algorithms- Creativity in Algorithms
Scientific Method The scientific method is a guide to problem solving. It involves asking questions, making observations, and trying to figure out things.
Title of My Design and Prototype Project
Team-building Workshop: The Standard Agenda
Looping and Random Numbers
THE Financial Services NETWORK Planning for Next Season –
Customer Service Training
Solving Absolute Value Equations
Putting Problem Solving into Practice with a Schedule!!!
Section 5.5 – Logarithmic Equations
Solve a system of linear equation in two variables
Scientific Inquiry Standard B – 1.7.
Progress Report "Don't leave all the writing until the end. Keep notes - especially for the Progress, Design, Implementation, Testing and Evaluation sections.
The Scientific Method 5 Steps to Follow!.
Putting Problem Solving into Practice with a Schedule!!!
UNIT 3 CHAPTER 1 LESSON 4 Using Simple Commands.
Solving Two-Step Equations
Designing an Intervention
Problem Solving and Decision Making
Computer Programming.
Solving Equations.
Word Problems extra information.
Algorithms and Problem Solving
SECTION 10-4 : RADICAL EQUATIONS
Team-building Workshop: The Standard Agenda
Introduction to programming
Objectives Identify solutions of linear equations in two variables.
Walk-In Take out notebook, folder, agenda and pencil box.
Vocabulary Algorithm - A precise sequence of instructions for processes that can be executed by a computer Low level programming language: A programming.
Your agenda should answer WHEN, WHO, WHY, WHAT, PREPARE, HOW.
Solve for p. Show all steps and check your answer.
name of trainer associate trainer | sparqs
The Scientific Method 5 Steps to Follow!.
Computational Thinking
Designing an Intervention
Section 12.5 – Logarithmic Equations
Type Topic in here! Created by Educational Technology Network
7.6 Solving Radical Equations
6.6 Solve Radical Equations
Accelerated Interest Based Problem Solving
Problem Solving Objectives: The student will be able to:
Objective SWBAT solve polynomial equations in factored form.
Opening Question: Take a moment to reflect on your experience with PowerPoint. Come up with a positive and a negative example.
Interpreting Remainders in Division
Scientific Inquiry Standards B – 1.7 and B – 1.8.
Presentation transcript:

Open on the student drive Problem Solving Steps Open on the student drive

Steps to Solving Problems with a Computer Analyze – Think about the problem Propose Steps - Write the Algorithm Test the Steps– Check the steps Code – Tell the computer how to solve the problem Test the Code – Check the computers answer

Problem Solving Steps Define and Identify the Problem Analyze the Problem Identifying Possible Solutions Selecting the Best Solutions Develop an Action Plan Implement a Solution

Define and Identify the Problem What do you know about the problem? Write down everything you know about the problem. Ask questions about anything you don’t know

Analyze the Problem What needs to be solved? Once you know the details, think about what must be solved Try to stay focused on things to solve the problem

Identifying Possible Solutions List any options that would solve the problem Brainstorm several options that could solve the problem Think of more than just one so you can have a backup plan just in case

Selecting the Best Solutions Which solution would be the best? Think about all of the details from the analysis step Decide which solution solves the problem the best

Develop an Action Plan List steps that would be needed Think about the order in which you should solve the problem Create an algorithm

Implement the Solution Do you think the steps would work? Executing the plan Reflecting on what could have been changed to make the solution easier

Today’s Agenda Problem Solving Steps #1 Problem Solving Steps #2