Creativity & The greater good

Slides:



Advertisements
Similar presentations
IntroductionIntroduction Most musical sounds are periodic, and are composed of a collection of harmonic sine waves.Most musical sounds are periodic, and.
Advertisements

1. If this standing wave is 3.2 m long, what is the wavelength? (2.56 m)
Sound Interference Positions of zero displacement resulting from destructive interference are referred to as: A. antinodes B. nodes C. supercrests D. supertroughs.
© 2005 Illinois Mathematics and Science Academy 1 Digital Information Fluency Skills In Search of a Definition.
Introduction to Computational Thinking Vicky Chen.
1. A Pan pipe is 62.2 cm long, and has a wave speed of 321 m/s. It is a one end open, one end fixed pipe. a. Draw the first three harmonics of vibration.
Beats = Some Graphs Recall what a single frequency tone sounds like Play on Sound Generator A=440 Hz. The Graph:
Suzanne Westbrook, PhD School of Information: Science, Technology, & Arts Computer Science Dept, UA.
Review Concept: PS-7.4 Use the formulas v = f λ and v = d/t to solve problems related to the velocity of waves.
3 A’s of Computational Thinking. Computational Thinking.
1© Manhattan Press (H.K.) Ltd Stationary waves in an open pipe.
Computational Thinking Class Overview web site:
How to Read Code Benfeard Williams 6/11/2015 Susie’s lecture notes are in the presenter’s notes, below the slides Disclaimer: Susie may have made errors.
Monté Carlo Simulation  Understand the concept of Monté Carlo Simulation  Learn how to use Monté Carlo Simulation to make good decisions  Learn how.
Sound and Digital Sound v © Allan C. Milne Abertay University.
WHAT IS COMPUTER SCIENCE? Phil Sands K-12 Outreach Coordinator for Computer Science.
Learning Objectives: 1. Identify the different parts of a sound wave 2. Describe the relationship between wave amplitude and intensity + wave frequency.
Calculating Wave Speed
The Period, or the time it takes for wave to complete on wavelength, is related to ____________ Frequency.
Music in Artificial Intelligence Victoria Tran. Why Music in Artificial Intelligence? Technology is improving every day, so music is beginning to depend.
PHYSICS CLASS ACTIVITY. CLASS ACTIVITY: TUNING FORK FREQUENCY.
The faster the end of the rope is ‘waggled’, the shorter the wavelength produced The wave equation.
V f λ.
Computational thinking, technological fluency, computational literacy, and 21 st century skills: A Research-Evaluation working group conversation Wednesday,
서울대한양대 ( 안 산 ) 충남대 1년1년 컴퓨터기초 (C) 컴퓨터프로그래밍 (C, Java) 컴퓨터프로그래밍 (C) 2. 봄 프로그래밍 원리 (Scheme, ML) Structure & Interpretation of Computer Programs 프로그래밍 방법론.
SOUND
Harmonics on the guitar Resonating air column (open ended)
Open Pipe Resonance Plus some examples. Open Pipe Resonance An open pipe resonator is a resonating tube with both ends open The open ends have antinodes.
CS 591 S1 – Computational Audio -- Spring, 2017
Adviser: Ming-Puu Chen Presenter: Li-Chun Wang
3.3 Fundamentals of data representation
A Mental Game as a Source of CS Case Studies
LOW-COMPLEXITY ARBITRARY SAMPLE-RATE CONVERTER
Computational Thinking in the Classroom
Topic: Programming Languages and their Evolution + Intro to Scratch
3.3 Fundamentals of data representation
Functions and Top-Down Design
CS 591 S1 – Computational Audio -- Spring, 2017
Speed Formula - Waves.
A Level Computing AQA (7517)
Wave Frequency and Speed
V f λ.
Dr Richard Alexander (G44B)
Computational Thinking
Wave interference and Beat Frequency
Technical Graphics Design Appreciation and Awareness
Module 3 Play and Creativity
Standing waves review A standing wave occurs when there is constructive interference between a wave and it reflections from a boundary.
Wave Frequency and Speed
Learning to Program in Python
Questions: What is the frequency of a light wave whose wavelength is 700nm (7x10-7 m) At the edge of a pond Daisy counts four waves in 10s. If the distance.
24.2 Speed of Waves.
Beats September 9, 2005.
Notes Over 1.7 Solving Inequalities
Introduction to Computer Science
Introducing Digital Technologies
Other terms related to a periodic wave
Length 4.5m = 9cm on the scale drawing Scale 1cm to 0.5m
Notes Over 1.7 Solving Inequalities
POWER CHALLENGES Several Ways To Solve 7 CHALLENGES.
Computational Thinking
Introduction to Computer Science
Chapter 2. Problem Solving and Software Engineering
Mathematics Unit 5: Continent Area
v = f fn = nf1  = 5558 m 343 = 5558(f) f = Hz 325th harmonic
Recap In previous lessons we have looked at how numbers can be stored as binary. We have also seen how images are stored as binary. This lesson we are.
Quiz: Computational Thinking
Music Examples Answers
3rd Grade Math Module 7 Lesson 29
Chapter 15 Notes Sound.
Presentation transcript:

Creativity & The greater good Programming is a creative and powerful process

Computational Thinking …is a way of solving problems, designing systems, and understanding human behavior that draws on concepts fundamental to computer science. …means creating and making use of different levels of abstraction, to understand and solve problems more effectively. …means thinking algorithmically and with the ability to apply mathematical concepts such as induction to develop more efficient, fair, and secure solutions. …means understanding the consequences of scale, not only for reasons of efficiency but also for economic and social reasons.

“computer scientists” can do what? Meet a computer scientist. Coding for good! 7 things you should know when starting to program

Sound! Using Winsound module

Use Python to make the computer beep Import winsound A sound is composed of a frequency and a length of time. winsound.Beep( freq in hz, length in ms) for example: winsound.Beep(50, 100) On this example, a sound of 50 hz will play for 100 milliseconds

Play a sound file This is a bit more tricky, but we can play a wave sound file within Python. You will need the exact location of the wav file – see below winsound.PlaySound( file name, flag) for example: winsound.PlaySound(‘H:\sound.wav’, 0)