Functional Generation of Harmony and Melody

Size: px
Start display at page:

Download "Functional Generation of Harmony and Melody"

Transcription

1 Functional Generation of Harmony and Melody José Pedro Magalhães Hendrik Vincent Koops Functional Art, Music, Modeling and Design September 2014 José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

2 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

3 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: A pretty-printer that shows the tree structure of a sequence of chords (ICFP 2011); José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

4 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: A pretty-printer that shows the tree structure of a sequence of chords (ICFP 2011); A system for finding cover songs based on harmonic similarity (ISMIR 2011); José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

5 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: A pretty-printer that shows the tree structure of a sequence of chords (ICFP 2011); A system for finding cover songs based on harmonic similarity (ISMIR 2011); An improved chord recogniser from audio that is aware of the rules of musical harmony (ISMIR 2012); José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

6 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: A pretty-printer that shows the tree structure of a sequence of chords (ICFP 2011); A system for finding cover songs based on harmonic similarity (ISMIR 2011); An improved chord recogniser from audio that is aware of the rules of musical harmony (ISMIR 2012); A company ( José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

7 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: A pretty-printer that shows the tree structure of a sequence of chords (ICFP 2011); A system for finding cover songs based on harmonic similarity (ISMIR 2011); An improved chord recogniser from audio that is aware of the rules of musical harmony (ISMIR 2012); A company ( A system for automatic melody harmonisation (FARM 2013); José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

8 An extremely useful model of musical harmony A couple of years ago I worked on a modelling musical harmony as a GADT in Haskell (together with W. Bas de Haas). From this model came: A pretty-printer that shows the tree structure of a sequence of chords (ICFP 2011); A system for finding cover songs based on harmonic similarity (ISMIR 2011); An improved chord recogniser from audio that is aware of the rules of musical harmony (ISMIR 2012); A company ( A system for automatic melody harmonisation (FARM 2013); FComp: a system for automatic generation of harmony and accompanying melody (this talk). José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

9 An example: visualising harmonic structure Piece Phrase Ton Dom Ton I : Maj Sub Dom I : Maj C: Maj III : Min IV : Maj II : Dom 7 V : Dom 7 C: Maj E: Min F : Maj D: Dom 7 G: Dom 7 You can see this tree as having been produced by taking the chords in green as input... José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

10 An example: generating harmonic structure Piece Phrase Ton Dom Ton I : Maj Sub Dom I : Maj C: Maj III : Min IV : Maj II : Dom 7 V : Dom 7 C: Maj E: Min F : Maj D: Dom 7 G: Dom 7 You can see this tree as having been produced by taking the chords in green as input... or the chords might have been dictated by the structure! José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

11 System structure Define harmony model Take all possible melody notes per chord Set rule weight Pick one focal melody note per chord Filter melody notes Embellish melody José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

12 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

13 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) Phrase M Ton M Dom M Ton M Dom M Ton M José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

14 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) Phrase M Ton M Dom M Ton M Dom M Ton M Ton Maj I Maj Ton Min I m Min José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

15 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) Phrase M Ton M Dom M Ton M Dom M Ton M Ton Maj I Maj Ton Min I m Min Dom M V 7 M V M VII 0 M Sub M Dom M II 7 M V 7 M José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

16 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) Phrase M Ton M Dom M Ton M Dom M Ton M Ton Maj I Maj Ton Min I m Min Sub Maj II m Maj IV Maj III m Maj IV Maj Sub Min IV m Min Dom M V 7 M V M VII 0 M Sub M Dom M II 7 M V 7 M José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

17 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) Phrase M Ton M Dom M Ton M Dom M Ton M Ton Maj I Maj Ton Min I m Min Dom M V 7 M V M VII 0 M Sub M Dom M II 7 M V 7 M Sub Maj II m Maj IV Maj III m Maj IV Maj Sub Min IV m Min I Maj IMin m VM 7 C: Maj C: Min G: Dom7 VII 0 M B: Dim José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

18 A functional model of harmony Piece M [Phrase M ] (M {Maj, Min}) Phrase M Ton M Dom M Ton M Dom M Ton M Ton Maj I Maj Ton Min I m Min Dom M V 7 M V M VII 0 M Sub M Dom M II 7 M V 7 M Sub Maj II m Maj IV Maj III m Maj IV Maj Sub Min IV m Min I Maj IMin m VM 7 C: Maj C: Min G: Dom7 VII 0 M B: Dim Simple, but enough for now, and easy to extend. José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

19 Now in Haskell I A GADT encoding musical harmony: data Mode = Maj Mode Min Mode data Piece = µ :: Mode.Piece [ Phrase µ ] José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

20 Now in Haskell I A GADT encoding musical harmony: data Mode = Maj Mode Min Mode data Piece = µ :: Mode.Piece [ Phrase µ ] data Phrase (µ :: Mode) where Phrase IVI :: Ton µ Dom µ Ton µ Phrase µ Phrase VI :: Dom µ Ton µ Phrase µ José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

21 Now in Haskell I A GADT encoding musical harmony: data Mode = Maj Mode Min Mode data Piece = µ :: Mode.Piece [ Phrase µ ] data Phrase (µ :: Mode) where Phrase IVI :: Ton µ Dom µ Ton µ Phrase µ Phrase VI :: Dom µ Ton µ Phrase µ data Ton (µ :: Mode) where Ton Maj :: SD I Maj Ton Maj Mode Ton Min :: SD I Min Ton Min Mode José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

22 Now in Haskell I A GADT encoding musical harmony: data Mode = Maj Mode Min Mode data Piece = µ :: Mode.Piece [ Phrase µ ] data Phrase (µ :: Mode) where Phrase IVI :: Ton µ Dom µ Ton µ Phrase µ Phrase VI :: Dom µ Ton µ Phrase µ data Ton (µ :: Mode) where Ton Maj :: SD I Maj Ton Maj Mode Ton Min :: SD I Min Ton Min Mode data Dom (µ :: Mode) where Dom 1 :: SD V Dom 7 Dom µ Dom 2 :: SD V Maj Dom µ Dom 3 :: SD VII Dim Dom µ Dom 4 :: SDom µ Dom µ Dom µ Dom 5 :: SD II Dom 7 SD V Dom 7 Dom µ José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

23 Now in Haskell II Scale degrees are the leaves of our hierarchical structure: data DiatonicDegree = I II III IV V VI VII data Quality = Maj Min Dom 7 Dim data SD (δ :: DiatonicDegree) (γ :: Quality) where SurfaceChord :: ChordDegree SD δ γ José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

24 Generating harmony Now that we have a datatype representing harmony sequences, how do we generate a sequence of chords? José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

25 Generating harmony Now that we have a datatype representing harmony sequences, how do we generate a sequence of chords? QuickCheck! We give Arbitrary instances for each of the datatypes in our model. José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

26 Generating harmony Now that we have a datatype representing harmony sequences, how do we generate a sequence of chords? QuickCheck! We give Arbitrary instances for each of the datatypes in our model.... but we don t want to do this by hand, for every datatype, and to have to adapt the instances every time we change the model... so we use generic programming: José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

27 Generating harmony Now that we have a datatype representing harmony sequences, how do we generate a sequence of chords? QuickCheck! We give Arbitrary instances for each of the datatypes in our model.... but we don t want to do this by hand, for every datatype, and to have to adapt the instances every time we change the model... so we use generic programming: gen :: (Representable α, Generate (Rep α)) Gen α José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

28 Generating harmony Now that we have a datatype representing harmony sequences, how do we generate a sequence of chords? QuickCheck! We give Arbitrary instances for each of the datatypes in our model.... but we don t want to do this by hand, for every datatype, and to have to adapt the instances every time we change the model... so we use generic programming: gen :: (Representable α, Generate (Rep α)) [ (String,Int) ] Gen α José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

29 Examples of harmony generation I testgen :: Gen (Phrase Maj Mode ) testgen = gen [("Dom4", 3), ("Dom5", 4)] example :: IO () example = let k = Key (Note C) Maj Mode in sample testgen >= mapm (printonkey k) printonkey :: Key Phrase Maj Mode IO String José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

30 Examples of harmony generation I testgen :: Gen (Phrase Maj Mode ) testgen = gen [("Dom4", 3), ("Dom5", 4)] example :: IO () example = let k = Key (Note C) Maj Mode in sample testgen >= mapm (printonkey k) printonkey :: Key Phrase Maj Mode IO String > example [C: Maj, D: Dom 7, G: Dom 7, C: Maj ] [C: Maj, G: Dom 7, C: Maj ] [C: Maj, E: Min, F : Maj, G: Maj, C: Maj ] [C: Maj, E: Min, F : Maj, D: Dom 7, G: Dom 7, C: Maj ] [C: Maj, D: Min, E: Min, F : Maj, D: Dom 7, G: Dom 7, C: Maj ] José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

31 Examples of harmony generation II????? # n # n n # n José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

32 Generating a melody for a given harmony We then generate a melody in 4 steps: José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

33 Generating a melody for a given harmony We then generate a melody in 4 steps: 1. Generate a list of candidate melody notes per chord; José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

34 Generating a melody for a given harmony We then generate a melody in 4 steps: 1. Generate a list of candidate melody notes per chord; 2. Refine the candidates by filtering out obviously bad candidates; José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

35 Generating a melody for a given harmony We then generate a melody in 4 steps: 1. Generate a list of candidate melody notes per chord; 2. Refine the candidates by filtering out obviously bad candidates; 3. Pick one focal candidate melody note per chord; José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

36 Generating a melody for a given harmony We then generate a melody in 4 steps: 1. Generate a list of candidate melody notes per chord; 2. Refine the candidates by filtering out obviously bad candidates; 3. Pick one focal candidate melody note per chord; 4. Embellish the candidate notes to produce a final melody. José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

37 Generating a melody for a given harmony We then generate a melody in 4 steps: 1. Generate a list of candidate melody notes per chord; 2. Refine the candidates by filtering out obviously bad candidates; 3. Pick one focal candidate melody note per chord; 4. Embellish the candidate notes to produce a final melody. These four steps combine naturally using plain monadic bind: melody :: Key State MyState Song melody k = gencandidates >= refine >= pickone >= embellish >= return Song k More details in the paper! José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

38 Example I &? n # Ton Phrase Dom Ton I : Maj Sub Dom I : Maj C: Maj III : Min IV : Maj II : Dom 7 V : Dom 7 C: Maj E: Min F : Maj D: Dom 7 G: Dom 7 José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

39 Example II & #?# Phrase Ton Dom Ton I : Maj Sub Dom I : Maj G: Maj III : Min IV : Maj Sub Dom G: Maj B: Min C: Maj III : Min IV : Maj V : Maj B: Min C: Maj D: Dom 7 José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

40 Example III & #?# ## # n Phrase Ton Dom Ton I : Min Sub Dom I : Min E: Min IV : Min Sub Dom E: Min A: Min IV : Min II : Dom 7 V : Dom 7 A: Min F : Dom 7 B: Dom 7 José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

41 Conclusion FComp: a simple and easy to understand and improve functional system for automatic generation of harmony and accompanying melody. José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

42 Conclusion FComp: a simple and easy to understand and improve functional system for automatic generation of harmony and accompanying melody. Lots of room for improvement: Voice leading and counterpoint Handle repetition Improve embellishment Rhythm, form, instrumentation, dynamics José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

43 Conclusion FComp: a simple and easy to understand and improve functional system for automatic generation of harmony and accompanying melody. Lots of room for improvement: Voice leading and counterpoint Handle repetition Improve embellishment Rhythm, form, instrumentation, dynamics Thank you for your attention! José Pedro Magalhães Functional Generation of Harmony and Melody, FARM / 15

WPA REGIONAL CONGRESS OSAKA Japan 2015

WPA REGIONAL CONGRESS OSAKA Japan 2015 !!!!!!!!! -1- WPA REGIONAL CONGRESS OSAKA Japan 2015 "! " -2- !!!! -3- " " "!! " " -4- !!!!!!!!!!!!!! -5- !!!!!!!!!!!!!!! -6- WPA REGIONAL CONGRESS OSAKA Japan 2015! -7- ! "!! -8- -9- WPA REGIONAL CONGRESS

More information

Basic Theory Test, Part A - Notes and intervals

Basic Theory Test, Part A - Notes and intervals CONCORDIA UNIVERSITY DEPARTMENT OF MUSIC - CONCORDIA Hello, Georges! Your Account Your Desks CONCORDIA UNIVERSITY DEPARTMENT OF MUSIC - CONCORDIA APPLICATION Basic Theory Test, Part A - Notes and intervals

More information

Unit 5b: Bach chorale (technical study)

Unit 5b: Bach chorale (technical study) Unit 5b: Bach chorale (technical study) The technical study has several possible topics but all students at King Ed s take the Bach chorale option - this unit supports other learning the best and is an

More information

MUSIC PERFORMANCE: GROUP

MUSIC PERFORMANCE: GROUP Victorian Certificate of Education 2003 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words MUSIC PERFORMANCE: GROUP Aural and written examination Friday 21 November 2003 Reading

More information

Keys Supplementary Sheet 11. Modes Dorian

Keys Supplementary Sheet 11. Modes Dorian Keys Supplementary Sheet 11. Modes Dorian Keys Question 1 Write the dorian mode, ascending and descending, beginning on D. Do not use a key signature. Keys Question 2 Write the dorian mode that is begins

More information

Curriculum Standard One: The student will listen to and analyze music critically, using vocabulary and language of music.

Curriculum Standard One: The student will listen to and analyze music critically, using vocabulary and language of music. Curriculum Standard One: The student will listen to and analyze music critically, using vocabulary and language of music. 1. The student will analyze the uses of elements of music. A. Can the student analyze

More information

TABLE OF CONTENTS CHAPTER 1 PREREQUISITES FOR WRITING AN ARRANGEMENT... 1

TABLE OF CONTENTS CHAPTER 1 PREREQUISITES FOR WRITING AN ARRANGEMENT... 1 TABLE OF CONTENTS CHAPTER 1 PREREQUISITES FOR WRITING AN ARRANGEMENT... 1 1.1 Basic Concepts... 1 1.1.1 Density... 1 1.1.2 Harmonic Definition... 2 1.2 Planning... 2 1.2.1 Drafting a Plan... 2 1.2.2 Choosing

More information

MoStMusic Standard EF START PAGE MARIE SKLODOWSKA-CURIE ACTIONS. Individual Fellowships (IF) Call: H2020-MSCA-IF-2014 PART B.

MoStMusic Standard EF START PAGE MARIE SKLODOWSKA-CURIE ACTIONS. Individual Fellowships (IF) Call: H2020-MSCA-IF-2014 PART B. START PAGE MARIE SKLODOWSKA-CURIE ACTIONS Individual Fellowships (IF) Call: H2020-MSCA-IF-2014 PART B MoStMusic This proposal is to be evaluated as: [Standard EF] Part B - Page 1 of 21 TABLE OF CONTENTS

More information

7. Components to Establish Time

7. Components to Establish Time 7. Components to Establish Time a. Step 1 - Bass Notes Walking Bass This is the most common way solo jazz pianists use to establish time. Most people actual think, it s the only way which is a shame because

More information

Summary report of the 2017 ATAR course examination: Music

Summary report of the 2017 ATAR course examination: Music Summary report of the 2017 ATAR course examination: Music Year Number who sat all Number of absentees from examination components all examination Contemporary Jazz Western Art components Music Music (WAM)

More information

Additional Theory Resources

Additional Theory Resources UTAH MUSIC TEACHERS ASSOCIATION Additional Theory Resources Open Position/Keyboard Style - Level 6 Names of Scale Degrees - Level 6 Modes and Other Scales - Level 7-10 Figured Bass - Level 7 Chord Symbol

More information

Diatonic Harmony with Roman Numeral Analysis

Diatonic Harmony with Roman Numeral Analysis Diatonic Harmony with Roman Numeral Analysis Handout #3 Music 214 Harmony within the key When we use the musical term diatonic, we mean the notes being used all come from the key. n that way the terms

More information

Curriculum Standard One: The student will listen to and analyze music critically, using the vocabulary and language of music.

Curriculum Standard One: The student will listen to and analyze music critically, using the vocabulary and language of music. Curriculum Standard One: The student will listen to and analyze music critically, using the vocabulary and language of music. 1. The student will analyze the uses of elements of music. A. Can the student

More information

Teaching Resource COMPOSITION. 7 Activities for Teaching Composition

Teaching Resource COMPOSITION. 7 Activities for Teaching Composition Teaching Resource COMPOSITION 7 Activities for Teaching Composition Contents In this Resource This is one of THREE resources released by the ACO for secondary schools. Each resource focusses on a core

More information

MUSIC 2/3 UNIT (COMMON) MUSICOLOGY I AND AURAL SKILLS STUDENT NUMBER CENTRE NUMBER HIGHER SCHOOL CERTIFICATE EXAMINATION.

MUSIC 2/3 UNIT (COMMON) MUSICOLOGY I AND AURAL SKILLS STUDENT NUMBER CENTRE NUMBER HIGHER SCHOOL CERTIFICATE EXAMINATION. STUDENT NUMBER CENTRE NUMBER HIGHER SCHOOL CERTIFICATE EXAMINATION 2000 MUSIC 2/3 UNIT (COMMON) MUSICOLOGY I AND AURAL SKILLS (35 Marks) (Reading time: 5 minutes) DIRECTIONS TO CANDIDATES Write your Student

More information

MUSIC PERFORMANCE: GROUP

MUSIC PERFORMANCE: GROUP Victorian Certificate of Education 2002 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Figures Words STUDENT NUMBER Letter MUSIC PERFORMANCE: GROUP Aural and written examination Friday 22 November 2002 Reading

More information

Music Solo Performance

Music Solo Performance Music Solo Performance Aural and written examination October/November Introduction The Music Solo performance Aural and written examination (GA 3) will present a series of questions based on Unit 3 Outcome

More information

A Model of Musical Motifs

A Model of Musical Motifs A Model of Musical Motifs Torsten Anders Abstract This paper presents a model of musical motifs for composition. It defines the relation between a motif s music representation, its distinctive features,

More information

A Model of Musical Motifs

A Model of Musical Motifs A Model of Musical Motifs Torsten Anders torstenanders@gmx.de Abstract This paper presents a model of musical motifs for composition. It defines the relation between a motif s music representation, its

More information

HARMTRACE: IMPROVING HARMONIC SIMILARITY ESTIMATION USING FUNCTIONAL HARMONY ANALYSIS

HARMTRACE: IMPROVING HARMONIC SIMILARITY ESTIMATION USING FUNCTIONAL HARMONY ANALYSIS 12th International Society for Music Information Retrieval Conference (ISMIR 2011) HARMTRACE: IMPROVING HARMONIC SIMILARITY ESTIMATION USING FUNCTIONAL HARMONY ANALYSIS W. Bas de Haas W.B.deHaas@uu.nl

More information

ii7-v7-i7 chord progression, p. 8 Lead Sheet Harmonization, In the Good Old Summer Time, p. 10 The Streets of Laredo, p. 9 (switch parts w/ partner)

ii7-v7-i7 chord progression, p. 8 Lead Sheet Harmonization, In the Good Old Summer Time, p. 10 The Streets of Laredo, p. 9 (switch parts w/ partner) Piano Class III Assignments Class Period 1 2 3 4 5 Tonic-Subdominant-Dominant 7th Review, p. 1-2 Harmonizing Melodies Using I, IV, V7 No. 1, 3, p.3-4 Music for Reading No. 1-2, p. 11 Accompanying, Santa

More information

AP Music Theory 2015 Free-Response Questions

AP Music Theory 2015 Free-Response Questions AP Music Theory 2015 Free-Response Questions College Board, Advanced Placement Program, AP, AP Central, and the acorn logo are registered trademarks of the College Board. AP Central is the official online

More information

Aural Skills II (MUSI 1171), Spring 2007 Professor: Andrew Davis ( )

Aural Skills II (MUSI 1171), Spring 2007 Professor: Andrew Davis ( ) Page 1 of 10 Aural Skills II (MUSI 1171), Spring 2007 Professor: Andrew Davis (email) Home page and syllabus Daily schedule Daily schedule Shortcut to the current week (assuming I remember to keep the

More information

Grade Six. MyMusicTheory.com. Composition Complete Course, Exercises & Answers PREVIEW. (ABRSM Syllabus) BY VICTORIA WILLIAMS BA MUSIC

Grade Six. MyMusicTheory.com. Composition Complete Course, Exercises & Answers PREVIEW. (ABRSM Syllabus) BY VICTORIA WILLIAMS BA MUSIC MyMusicTheory.com Grade Six Composition Complete Course, Exercises & Answers PREVIEW (ABRSM Syllabus) BY VICTORIA WILLIAMS BA MUSIC www.mymusictheory.com Published: 8th March 2015 1 This is a preview document

More information

Popular Music Theory Syllabus Guide

Popular Music Theory Syllabus Guide Popular Music Theory Syllabus Guide 2015-2018 www.rockschool.co.uk v1.0 Table of Contents 3 Introduction 6 Debut 9 Grade 1 12 Grade 2 15 Grade 3 18 Grade 4 21 Grade 5 24 Grade 6 27 Grade 7 30 Grade 8 33

More information

AP Music Theory Curriculum

AP Music Theory Curriculum AP Music Theory Curriculum Course Overview: The AP Theory Class is a continuation of the Fundamentals of Music Theory course and will be offered on a bi-yearly basis. Student s interested in enrolling

More information

Curriculum Mapping Piano and Electronic Keyboard (L) Semester class (18 weeks)

Curriculum Mapping Piano and Electronic Keyboard (L) Semester class (18 weeks) Curriculum Mapping Piano and Electronic Keyboard (L) 4204 1-Semester class (18 weeks) Week Week 15 Standar d Skills Resources Vocabulary Assessments Students sing using computer-assisted instruction and

More information

Organ Programmes of study:

Organ Programmes of study: HOCHSCHULE FÜR MUSIK UND THEATER Organ Programmes of study: Bachelor of Music Duration of study programme: Area of professional activity: 8 semesters Bachelor of Music Concert Organist I freelance work

More information

AP MUSIC THEORY 2016 SCORING GUIDELINES

AP MUSIC THEORY 2016 SCORING GUIDELINES 2016 SCORING GUIDELINES Question 7 0---9 points A. ARRIVING AT A SCORE FOR THE ENTIRE QUESTION 1. Score each phrase separately and then add the phrase scores together to arrive at a preliminary tally for

More information

Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2015

Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2015 2015. M50 Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2015 WRITE YOUR EXAMINATION NUMBER HERE * MUSIC HIGHER LEVEL COMPOSING (100 marks) THURSDAY 18 JUNE

More information

The KING S Medium Term Plan - Music. Y10 LC1 Programme. Module Area of Study 3

The KING S Medium Term Plan - Music. Y10 LC1 Programme. Module Area of Study 3 The KING S Medium Term Plan - Music Y10 LC1 Programme Module Area of Study 3 Introduction to analysing techniques. Learners will listen to the 3 set works for this Area of Study aurally first without the

More information

Using the Modes and Applying Them

Using the Modes and Applying Them Using the Modes and Applying Them Here we have an example of a solo in the first mode of the C major scale: Since the first mode of the C major scale is C, the goal is to emphasize that first note in the

More information

Like A River Glorious

Like A River Glorious Like A River Glorious Exercise in Arranging New Endings This is an excercise in arranging new endings for songs, whether you are improvising or composing your own arrangements. I am using the last line

More information

AP MUSIC THEORY 2015 SCORING GUIDELINES

AP MUSIC THEORY 2015 SCORING GUIDELINES 2015 SCORING GUIDELINES Question 7 0 9 points A. ARRIVING AT A SCORE FOR THE ENTIRE QUESTION 1. Score each phrase separately and then add the phrase scores together to arrive at a preliminary tally for

More information

A Planned Course Statement for. Music Theory, AP. Course # 760 Grade(s) 11, 12. Length of Period (mins.) 40 Total Clock Hours: 120

A Planned Course Statement for. Music Theory, AP. Course # 760 Grade(s) 11, 12. Length of Period (mins.) 40 Total Clock Hours: 120 East Penn School District Secondary Curriculum A Planned Course Statement for Music Theory, AP Course # 760 Grade(s) 11, 12 Department: Music Length of Period (mins.) 40 Total Clock Hours: 120 Periods

More information

Intro...3. Chapter 1: Get Up Offa That Beat Chapter 2: Hablas Salsa? Melody & Language Chapter 3: Swing in Perfect Harmony...

Intro...3. Chapter 1: Get Up Offa That Beat Chapter 2: Hablas Salsa? Melody & Language Chapter 3: Swing in Perfect Harmony... Table of Contents Intro...3 Chapter 1: Get Up Offa That Beat... 4 Chapter 2: Hablas Salsa? Melody & Language... 16 Chapter 3: Swing in Perfect Harmony... 23 Chapter 4: Turn the Beat Around; Montunos in

More information

Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2016

Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2016 2016. M50 Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2016 WRITE YOUR EXAMINATION NUMBER HERE * MUSIC HIGHER LEVEL COMPOSING (100 marks) THURSDAY 23 JUNE

More information

BLUE VALLEY DISTRICT CURRICULUM & INSTRUCTION Music 9-12/Honors Music Theory

BLUE VALLEY DISTRICT CURRICULUM & INSTRUCTION Music 9-12/Honors Music Theory BLUE VALLEY DISTRICT CURRICULUM & INSTRUCTION Music 9-12/Honors Music Theory ORGANIZING THEME/TOPIC FOCUS STANDARDS FOCUS SKILLS UNIT 1: MUSICIANSHIP Time Frame: 2-3 Weeks STANDARDS Share music through

More information

AP MUSIC THEORY 2006 SCORING GUIDELINES. Question 7

AP MUSIC THEORY 2006 SCORING GUIDELINES. Question 7 2006 SCORING GUIDELINES Question 7 SCORING: 9 points I. Basic Procedure for Scoring Each Phrase A. Conceal the Roman numerals, and judge the bass line to be good, fair, or poor against the given melody.

More information

Theory Placement Exam 1

Theory Placement Exam 1 Theory Placement Exam 1 Full Name: This exam begins with melodic and harmonic dictation, and then covers some basic music theory, analysis, and writing skills. I. Melodic Dictation You will hear an excerpt

More information

AP MUSIC THEORY 2013 SCORING GUIDELINES

AP MUSIC THEORY 2013 SCORING GUIDELINES 2013 SCORING GUIDELINES Question 7 SCORING: 9 points A. ARRIVING AT A SCORE FOR THE ENTIRE QUESTION 1. Score each phrase separately and then add these phrase scores together to arrive at a preliminary

More information

MSN Encarta Standard - Print Preview - Harmony (music)

MSN Encarta Standard - Print Preview - Harmony (music) Page 1 of 7 Print Preview Harmony (music) Article View On the File menu, click Print to print the information. Harmony (music) I. INTRODUCTION Harmony (music), the combination of notes (or pitches) that

More information

AP MUSIC THEORY 2011 SCORING GUIDELINES

AP MUSIC THEORY 2011 SCORING GUIDELINES 2011 SCORING GUIDELINES Question 7 SCORING: 9 points A. ARRIVING AT A SCORE FOR THE ENTIRE QUESTION 1. Score each phrase separately and then add these phrase scores together to arrive at a preliminary

More information

Leaving Certificate 2017: Music Marking Scheme Composing Higher level - Core. SECTION A MELODY COMPOSITION (40 marks) Q Descriptors Mark

Leaving Certificate 2017: Music Marking Scheme Composing Higher level - Core. SECTION A MELODY COMPOSITION (40 marks) Q Descriptors Mark SECTION A MELODY COMPOSITION (40 marks) 1 Melody has excellent style and imagination Excellent sense of shape and structure Excellent development of opening ideas Very good sense of melodic and rhythmic

More information

Computational Modelling of Harmony

Computational Modelling of Harmony Computational Modelling of Harmony Simon Dixon Centre for Digital Music, Queen Mary University of London, Mile End Rd, London E1 4NS, UK simon.dixon@elec.qmul.ac.uk http://www.elec.qmul.ac.uk/people/simond

More information

MUSIC GROUP PERFORMANCE

MUSIC GROUP PERFORMANCE Victorian Certificate of Education 2010 SUPERVISOR TO ATTACH PROCESSING LABEL HERE STUDENT NUMBER Letter Figures Words MUSIC GROUP PERFORMANCE Aural and written examination Monday 1 November 2010 Reading

More information

2011 MUSICIANSHIP ATTACH SACE REGISTRATION NUMBER LABEL TO THIS BOX. Part 1: Theory, Aural Recognition, and Musical Techniques

2011 MUSICIANSHIP ATTACH SACE REGISTRATION NUMBER LABEL TO THIS BOX. Part 1: Theory, Aural Recognition, and Musical Techniques External Examination 2011 2011 MUSICIANSHIP FOR OFFICE USE ONLY SUPERVISOR CHECK ATTACH SACE REGISTRATION NUMBER LABEL TO THIS BOX QUESTION BOOKLET 1 19 pages, 21 questions RE-MARKED Wednesday 16 November:

More information

Sight Singing and Ear Training II (MUSI 1171) Professor: Andrew Davis ( )

Sight Singing and Ear Training II (MUSI 1171) Professor: Andrew Davis ( ) Page 1 of 11 Sight Singing and Ear Training II (MUSI 1171) Professor: Andrew Davis (email) Home page and syllabus Daily schedule Daily schedule Shortcut to the current week (assuming I remember to keep

More information

AP Music Theory. Course Description. Course Objectives. Rachel Pack

AP Music Theory. Course Description. Course Objectives. Rachel Pack AP Music Theory Rachel Pack rpack@tahomasd.us http://swift.tahoma.wednet.edu/ths/musictheory Course Description This course is intended for students who have previous experience reading music. Students

More information

APPENDIX 3: ADDITIONAL HARMONIC- SEQUENCE TOPICS

APPENDIX 3: ADDITIONAL HARMONIC- SEQUENCE TOPICS APPENDX : ADDTONAL HARMONC- SEQUENCE TOPCS COMPOUND MELODY AND MPLED SEENTH CHORD SEQUENCES We have observed how composers write single melodic lines that give the impression of two or more independent

More information

AP Music Theory. Sample Student Responses and Scoring Commentary. Inside: Free Response Question 7. Scoring Guideline.

AP Music Theory. Sample Student Responses and Scoring Commentary. Inside: Free Response Question 7. Scoring Guideline. 2018 AP Music Theory Sample Student Responses and Scoring Commentary Inside: Free Response Question 7 RR Scoring Guideline RR Student Samples RR Scoring Commentary College Board, Advanced Placement Program,

More information

Curriculum Overview Music Year 9

Curriculum Overview Music Year 9 2015-2016 Curriculum Overview Music Year 9 Within each Area of Study students will be encouraged to choose their own specialisms with regard to Piano, Guitar, Vocals, ICT or any other specialism they have.

More information

But-the-Pieces Plan: 10 Week Composer Cultivation. Overview. Quick Look Lesson Plan WEEK FOCUS ACTIVITY NOTES:

But-the-Pieces Plan: 10 Week Composer Cultivation. Overview. Quick Look Lesson Plan WEEK FOCUS ACTIVITY NOTES: Overview This But-the-Pieces lesson plan is designed to help students to not just compose a piece, but to really get the most out the experience that they can and learn about what goes into writing a great

More information

MICHAEL GUNDLACH COCK TAIL PIANO VOLUME. DOWNLOAD PDF FILE

MICHAEL GUNDLACH COCK TAIL PIANO VOLUME.  DOWNLOAD PDF FILE MIHAEL GUNDLAH THE OK TAIL PIANO METHOD VOLUME TE HN IQU ES O ST Y LISH PIA NO EN TER TA I NM EN T www.migu-music.com DOWNLOAD PD ILE Table of ontents Explanation of ontents... 6 Lovely Day...48 Harmony

More information

TEST SUMMARY AND FRAMEWORK TEST SUMMARY

TEST SUMMARY AND FRAMEWORK TEST SUMMARY Washington Educator Skills Tests Endorsements (WEST E) TEST SUMMARY AND FRAMEWORK TEST SUMMARY MUSIC: CHORAL Copyright 2016 by the Washington Professional Educator Standards Board 1 Washington Educator

More information

Sample assessment task. Task details. Content description. Task preparation. Year level 9

Sample assessment task. Task details. Content description. Task preparation. Year level 9 Sample assessment task Year level 9 Learning area Subject Title of task Task details Description of task Type of assessment Purpose of assessment Assessment strategy Evidence to be collected Suggested

More information

Piano Teacher Program

Piano Teacher Program Piano Teacher Program Associate Teacher Diploma - B.C.M.A. The Associate Teacher Diploma is open to candidates who have attained the age of 17 by the date of their final part of their B.C.M.A. examination.

More information

Overview. Topics covered throughout the unit include:

Overview. Topics covered throughout the unit include: YEAR 9 INTEGRATED STUDIES UNIT PLAN LEARNERS: 19 Students. 2 non- music background students. YEAR LEVEL: 9 DURATION: 4 weeks (Term 2, wks 7-10) Topic: Musical Styles Designer: Henry South Overview Students

More information

Active learning will develop attitudes, knowledge, and performance skills which help students perceive and respond to the power of music as an art.

Active learning will develop attitudes, knowledge, and performance skills which help students perceive and respond to the power of music as an art. Music Music education is an integral part of aesthetic experiences and, by its very nature, an interdisciplinary study which enables students to develop sensitivities to life and culture. Active learning

More information

GCE. Music. Mark Scheme for June Advanced GCE Unit G356: Historical and Analytical Studies in Music. Oxford Cambridge and RSA Examinations

GCE. Music. Mark Scheme for June Advanced GCE Unit G356: Historical and Analytical Studies in Music. Oxford Cambridge and RSA Examinations GCE Music Advanced GCE Unit G356: Historical and Analytical Studies in Music Mark Scheme for June 2013 Oxford Cambridge and RSA Examinations OCR (Oxford Cambridge and RSA) is a leading UK awarding body,

More information

Reconceptualizing the Lydian Chromatic Concept: George Russell as Historical Theorist. Michael McClimon

Reconceptualizing the Lydian Chromatic Concept: George Russell as Historical Theorist. Michael McClimon Reconceptualizing the Lydian Chromatic Concept: George Russell as Historical Theorist Michael McClimon michael@mcclimon.org 1998 Caplin, Classical Form 1999 Krebs, Fantasy Pieces 2001 Lerdahl, Tonal Pitch

More information

I. PREREQUISITE For information regarding prerequisites for this course, please refer to the Academic Course Catalog.

I. PREREQUISITE For information regarding prerequisites for this course, please refer to the Academic Course Catalog. WMUS 524 Note: Course content may be changed, term to term, without notice. The information below is provided as a guide for course selection and is not binding in any form, and should not be used to purchase

More information

Arranging in a Nutshell

Arranging in a Nutshell Arranging in a Nutshell Writing portable arrangements for 2 or 3 horns and rhythm section Jim Repa JEN Conference, New Orleans January 7, 2011 Web: http://www.jimrepa.com Email: jimrepa@hotmail.com 1 Portable

More information

Department Curriculum Map

Department Curriculum Map Department Curriculum Map 2014-15 Department Subject specific required in Year 11 Wider key skills Critical creative thinking / Improvising Aesthetic sensitivity Emotional awareness Using s Cultural understing

More information

Requirements for the aptitude tests in the Bachelor. study courses at Faculty 2

Requirements for the aptitude tests in the Bachelor. study courses at Faculty 2 Requirements for the aptitude tests in the Bachelor study courses at Faculty 2 (extracts from the respective examination regulations): CONTENTS B.A. in Musicology in combination with an artistic subject

More information

The University of Louisiana at Lafayette

The University of Louisiana at Lafayette The University of Louisiana at Lafayette Piano Proficiency Requirements BM Music, BA Music Education Technique: Play the required technique drill in the following major and minor keys: G, D, E Major and

More information

1a.51 Harmonic Seconds and Fifths WB2 1A_51ABCDEFGHIJ.WAV 1a.52 Identifying and Notating Seconds and All WB2 1A_52ABCDEFGHIJ.WAV

1a.51 Harmonic Seconds and Fifths WB2 1A_51ABCDEFGHIJ.WAV 1a.52 Identifying and Notating Seconds and All WB2 1A_52ABCDEFGHIJ.WAV Example # Audio file 1a.2 Echoing Pitch Patterns WB2 1A_2ABC.WAV 1a.14 Half Versus Whole Steps (I) WB2 1A_14ABCDEFGHIJ.WAV 1a.15 Half Versus Whole Steps (II) WB2 1A_15ABCDEFGHIJ.WAV 1a.16 Aural and Visual

More information

Flow My Tears. John Dowland Lesson 2

Flow My Tears. John Dowland Lesson 2 Flow My Tears John Dowland Lesson 2 Harmony (Another common type of suspension is heard at the start of bar 2, where the lute holds a 7 th (E) above F in the bass and then resolves this dissonance by falling

More information

In all creative work melody writing, harmonising a bass part, adding a melody to a given bass part the simplest answers tend to be the best answers.

In all creative work melody writing, harmonising a bass part, adding a melody to a given bass part the simplest answers tend to be the best answers. THEORY OF MUSIC REPORT ON THE MAY 2009 EXAMINATIONS General The early grades are very much concerned with learning and using the language of music and becoming familiar with basic theory. But, there are

More information

2011 Music Performance GA 3: Aural and written examination

2011 Music Performance GA 3: Aural and written examination 2011 Music Performance GA 3: Aural and written examination GENERAL COMMENTS The format of the Music Performance examination was consistent with the guidelines in the sample examination material on the

More information

The Baroque 1/4 ( ) Based on the writings of Anna Butterworth: Stylistic Harmony (OUP 1992)

The Baroque 1/4 ( ) Based on the writings of Anna Butterworth: Stylistic Harmony (OUP 1992) The Baroque 1/4 (1600 1750) Based on the writings of Anna Butterworth: Stylistic Harmony (OUP 1992) NB To understand the slides herein, you must play though all the sound examples to hear the principles

More information

PERFORMING ARTS. Head of Music: Cinzia Cursaro. Year 7 MUSIC Core Component 1 Term

PERFORMING ARTS. Head of Music: Cinzia Cursaro. Year 7 MUSIC Core Component 1 Term PERFORMING ARTS Head of Music: Cinzia Cursaro Year 7 MUSIC Core Component 1 Term At Year 7, Music is taught to all students for one term as part of their core program. The main objective of Music at this

More information

King Edward VI College, Stourbridge Starting Points in Composition and Analysis

King Edward VI College, Stourbridge Starting Points in Composition and Analysis King Edward VI College, Stourbridge Starting Points in Composition and Analysis Name Dr Tom Pankhurst, Version 5, June 2018 [BLANK PAGE] Primary Chords Key terms Triads: Root: all the Roman numerals: Tonic:

More information

Introduction to Vocal Music: The development of Secular Song

Introduction to Vocal Music: The development of Secular Song Introduction to Vocal Music: The development of Secular Song Instructions and answers for teachers These instructions should accompany the OCR resource Introduction to Vocal Music: The development of Secular

More information

Key stage 3 Music scheme of work

Key stage 3 Music scheme of work Key stage 3 Music scheme of work Outline Autumn term 1st half Autumn term 2nd half Spring term 1st half Spring term 2nd half Summer term 1st half Summer term 2nd half Year 7 Exploring rhythmic patterns

More information

CHAPTER ONE TWO-PART COUNTERPOINT IN FIRST SPECIES (1:1)

CHAPTER ONE TWO-PART COUNTERPOINT IN FIRST SPECIES (1:1) HANDBOOK OF TONAL COUNTERPOINT G. HEUSSENSTAMM Page 1 CHAPTER ONE TWO-PART COUNTERPOINT IN FIRST SPECIES (1:1) What is counterpoint? Counterpoint is the art of combining melodies; each part has its own

More information

OKLAHOMA SUBJECT AREA TESTS (OSAT )

OKLAHOMA SUBJECT AREA TESTS (OSAT ) CERTIFICATION EXAMINATIONS FOR OKLAHOMA EDUCATORS (CEOE ) OKLAHOMA SUBJECT AREA TESTS (OSAT ) FIELD 001: INSTRUMENTAL/GENERAL MUSIC September 2010 Subarea Range of Competencies I. Listening Skills 0001

More information

HarmTrace: Automatic functional harmonic analysis

HarmTrace: Automatic functional harmonic analysis HarmTrace: Automatic functional harmonic analysis W. Bas de Haas José Pedro Magalhães Frans Wiering Remco C. Veltkamp Technical Report UU-CS-2011-023 July 2011 Department of nformation and Computing Sciences

More information

CS 591 S1 Computational Audio

CS 591 S1 Computational Audio 4/29/7 CS 59 S Computational Audio Wayne Snyder Computer Science Department Boston University Today: Comparing Musical Signals: Cross- and Autocorrelations of Spectral Data for Structure Analysis Segmentation

More information

AP Music Theory 2008 Free-Response Questions

AP Music Theory 2008 Free-Response Questions AP Music Theory 2008 Free-Response Questions The College Board: Connecting Students to College Success The College Board is a not-for-profit membership association whose mission is to connect students

More information

PRACTICE FINAL EXAM. Fill in the metrical information missing from the table below. (3 minutes; 5%) Meter Signature

PRACTICE FINAL EXAM. Fill in the metrical information missing from the table below. (3 minutes; 5%) Meter Signature Music Theory I (MUT 1111) w Fall Semester, 2018 Name: Instructor: PRACTICE FINAL EXAM Fill in the metrical information missing from the table below. (3 minutes; 5%) Meter Type Meter Signature 4 Beat Beat

More information

Workbooks for undergraduate counterpoint 1-4

Workbooks for undergraduate counterpoint 1-4 1 Workbooks for undergraduate counterpoint 1-4 by Alan Belkin alanbelkinmusic@gmail.com http://alanbelkinmusic.com/ 2015, Alan Belkin. All rights reserved. This document may be shared freely, but may not

More information

Developing Your Musicianship Lesson 1 Study Guide

Developing Your Musicianship Lesson 1 Study Guide Terms 1. Harmony - The study of chords, scales, and melodies. Harmony study includes the analysis of chord progressions to show important relationships between chords and the key a song is in. 2. Ear Training

More information

Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2017

Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2017 2017. M50 Coimisiún na Scrúduithe Stáit State Examinations Commission LEAVING CERTIFICATE EXAMINATION, 2017 WRITE YOUR EXAMINATION NUMBER HERE* MUSIC HIGHER LEVEL COMPOSING (100 marks) THURSDAY 22 JUNE

More information

Acknowledgements... ii Preface... iii CHAPTER CHAPTER CHAPTER CHAPTER CHAPTER CHAPTER 6...

Acknowledgements... ii Preface... iii CHAPTER CHAPTER CHAPTER CHAPTER CHAPTER CHAPTER 6... Contents Acknowledgements... ii Preface... iii CHAPTER 1... 1 Theory of music... 1 CHAPTER 2... 27 Harmony... 27 CHAPTER 3... 52 Non-chordal notes and ornaments... 52 CHAPTER 4... 68 Secondary dominants

More information

UNIVERSITY COLLEGE DUBLIN NATIONAL UNIVERSITY OF IRELAND, DUBLIN MUSIC

UNIVERSITY COLLEGE DUBLIN NATIONAL UNIVERSITY OF IRELAND, DUBLIN MUSIC UNIVERSITY COLLEGE DUBLIN NATIONAL UNIVERSITY OF IRELAND, DUBLIN MUSIC SESSION 2000/2001 University College Dublin NOTE: All students intending to apply for entry to the BMus Degree at University College

More information

Syllabus for MUS 201 Harmony, Sight Singing, and Ear Training III Fall 1999

Syllabus for MUS 201 Harmony, Sight Singing, and Ear Training III Fall 1999 I. COURSE DESCRIPTION Syllabus for MUS 201 Harmony, Sight Singing, and Ear Training III Fall 1999 Harmony III will employ lecture, discussion, demonstration, compositional and analytical assignments, and

More information

Music Assessment Key Stage 3. Moving towards next step: A (creating and evaluating) Developing at that step: C (remembering and understanding)

Music Assessment Key Stage 3. Moving towards next step: A (creating and evaluating) Developing at that step: C (remembering and understanding) Music Assessment Key Stage 3 Moving towards next step: A (creating and evaluating) Secure at that step: B (applying and analysing) Developing at that step: C (remembering and understanding) Step 1 You

More information

Music Written Examination Student Samples

Music Written Examination Student Samples Music Written Examination Student Samples (Improving Student Performance Workshop) For teachers of Music ATAR and General 11 and 12 2018 2018/13064v2 Seminar description This workshop will focus on developing

More information

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Notes: 1. GRADE 1 TEST 1(b); GRADE 3 TEST 2(b): where a candidate wishes to respond to either of these tests in the alternative manner as specified, the examiner

More information

Music Advanced Subsidiary Unit 2: Composing

Music Advanced Subsidiary Unit 2: Composing Write your name here Surname Other names Edexcel GCE Music Advanced Subsidiary Unit 2: Composing Centre Number Candidate Number Release date: Thursday 1 September 2011 Time: 16 hours You do not need any

More information

Marking scheme lainaku music

Marking scheme lainaku music Marking scheme lainaku music MUSIC PAPER 3 1. a) 16 bars : 1mrk Sequence : 1mrk Duplet : 1mrk Modulation : 2mrks Phase marks : 1mrk Cadences : 2mrks Lyricism : 2mrks Melodic curve/climax: 1mrk Rhythm variety

More information

MUSIC PERFORMANCE: SOLO

MUSIC PERFORMANCE: SOLO SUPERVISOR TO ATTACH PROCESSING LABEL HERE Figures Words STUDENT NUMBER Letter Victorian Certificate of Education 2001 MUSIC PERFORMANCE: SOLO Aural and written examination Friday 16 November 2001 Reading

More information

JAZZ STANDARDS OF A BALLAD CHARACTER. Key words: jazz, standard, ballad, composer, improviser, form, harmony, changes, tritone, cadence

JAZZ STANDARDS OF A BALLAD CHARACTER. Key words: jazz, standard, ballad, composer, improviser, form, harmony, changes, tritone, cadence Article received on February 25, 2007 UDC 785.161 JAZZ STANDARDS OF A BALLAD CHARACTER Abstract: In order to improvise, jazz musicians use small form themes often taken from musicals and movies. They are

More information

NUMBER OF TIMES COURSE MAY BE TAKEN FOR CREDIT: One.

NUMBER OF TIMES COURSE MAY BE TAKEN FOR CREDIT: One. I. COURSE DESCRIPTION: A. Division: Humanities Department: Speech & Performing Arts Course ID: MUS 202L Course Title: Musicianship IV Units: 1 Lecture: None Laboratory: 3 hours Prerequisite Music 201 and

More information

Chorale Completion Cribsheet

Chorale Completion Cribsheet Fingerprint One (3-2 - 1) Chorale Completion Cribsheet Fingerprint Two (2-2 - 1) You should be able to fit a passing seventh with 3-2-1. If you cannot do so you have made a mistake (most commonly doubling)

More information

2014 Music Performance GA 3: Aural and written examination

2014 Music Performance GA 3: Aural and written examination 2014 Music Performance GA 3: Aural and written examination GENERAL COMMENTS The format of the 2014 Music Performance examination was consistent with examination specifications and sample material on the

More information

Graduate Musicianship Exam Sample Questions Sample harmonic dictation Sample analysis

Graduate Musicianship Exam Sample Questions Sample harmonic dictation Sample analysis Graduate Musicianship Exam The graduate musicianship diagnostic examination includes four written sections (in a single two-hour exam) and two performance sections (with two different five-minute private

More information

Perry High School Bands

Perry High School Bands Perry High School Bands AP Music Theory Syllabus Full Year 2015-16 Brandon Kiesgen, Director of Bands kiesgen.brandon@cusd80.com 480-224-2960 www.perrybands.com Course Description: Advanced Placement Programs

More information

Curriculum Catalog

Curriculum Catalog 2017-2018 Curriculum Catalog 2017 Glynlyon, Inc. Table of Contents MUSIC THEORY COURSE OVERVIEW... 1 UNIT 1: RHYTHM AND METER... 1 UNIT 2: NOTATION AND PITCH... 2 UNIT 3: SCALES AND KEY SIGNATURES... 2

More information