Harmony and Counterpoint
How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?
Harmony and Counterpoint are the vertical and horizontal dimensions of music theory. Harmony deals with the "vertical" relationship of sounds—how chords are built and how they progress from one to another to create tension and resolution. Counterpoint deals with the "horizontal" relationship—how two or more independent melodic lines can be played simultaneously while still sounding harmonious. Together, these concepts provide the grammar for Western music, from the fugues of J.S. Bach to the jazz of Miles Davis and the pop hits of today.
Remembering[edit]
- Harmony — The sound of two or more notes heard simultaneously.
- Counterpoint — The relationship between two or more independent melodic lines.
- Interval — The distance between two pitches (e.g., a Major Third).
- Chord — A group of three or more notes played together (e.g., a Triad).
- Consonance — Sounds that are stable, restful, and pleasing to the ear.
- Dissonance — Sounds that are unstable, tense, and "need" to resolve to a consonance.
- Resolution — The move from a dissonant chord/note to a consonant one.
- Progression — A series of chords played in succession (e.g., I-IV-V).
- Cadence — A progression of at least two chords that concludes a phrase or section of music.
- Scale — A sequence of notes in ascending or descending order (e.g., Major or Minor).
- Key — The central note and scale around which a piece of music is built.
- Modulation — The process of changing from one key to another.
- Voice Leading — The smooth movement of individual musical lines (voices) from one chord to the next.
- Cantus Firmus — A fixed melody used as the basis for a counterpoint composition.
Understanding[edit]
Music is a balance of "Tension" and "Release."
- The Vertical: Harmony**:
Chords are built from intervals. The most common is the **Triad** (Root, 3rd, and 5th).
- **Tonic (I)**: The "Home" chord.
- **Dominant (V)**: The chord with the most "Tension" that wants to go home to the Tonic.
Most Western music follows this cycle of leaving home (I -> IV), building tension (V), and returning home (I).
- The Horizontal: Counterpoint**:
In counterpoint, we don't think about "chords" first; we think about "melodies."
- **First Species**: One note against one note.
- **Imitative Counterpoint**: One voice repeats a melody after another (like a "Round" or a "Fugue").
The challenge of counterpoint is ensuring that each line is interesting on its own, but also that they don't "clash" too much when played together.
- The Rules of Voice Leading**: To make music sound "natural," we follow rules like:
1. Avoid "Parallel Fifths" (it makes the two lines sound like one, losing independence). 2. Move the shortest distance possible to the next note. 3. Resolve the "Leading Tone" (the 7th note of the scale) upward to the Tonic.
Applying[edit]
Modeling the 'Circle of Fifths' (Key Relationships): <syntaxhighlight lang="python"> def get_circle_of_fifths():
""" Shows how keys are related by adding one sharp or flat. """ keys = ['C', 'G', 'D', 'A', 'E', 'B', 'F#', 'Db', 'Ab', 'Eb', 'Bb', 'F'] sharps = [0, 1, 2, 3, 4, 5, 6, '5b', '4b', '3b', '2b', '1b'] return dict(zip(keys, sharps))
- Finding the key with 3 sharps
circle = get_circle_of_fifths() print(f"Key of A has: {circle['A']} sharps")
- The Circle of Fifths is the map every composer uses to know
- which keys 'sound good' together during modulation.
</syntaxhighlight>
- Harmonic Structures
- Diatonic Harmony → Music built using only the notes of the scale.
- Chromatic Harmony → Using notes outside the scale to add color and emotional "pull."
- Functional Harmony → The system (used in the 18th-19th centuries) where each chord has a specific "job" (Tonic, Subdominant, Dominant).
- Modal Harmony → Using ancient or non-Western scales (Modes) to create unique "flavors" (common in Jazz and Folk).
Analyzing[edit]
| Interval | Status | Emotion / Quality |
|---|---|---|
| Octave / Perfect Fifth | Perfect Consonance | Stable, Hollow, Powerful |
| Major/Minor Third | Imperfect Consonance | Sweet, Full, Emotional |
| Tritone (Aug 4th) | Sharp Dissonance | "The Devil in Music", Intense, Scary |
| Major Seventh | Mild Dissonance | Bright, Jazz-like, Unresolved |
- The Concept of "Function"**: A chord's meaning changes based on the key. A 'G major' chord feels like "Home" in the key of G, but it feels like "Tension" in the key of C. Analyzing these functional relationships is what allows a theorist to explain why a song "feels" like it's ending or why a bridge "feels" like it's taking you on a journey.
Evaluating[edit]
Evaluating a composition: (1) **Structural Integrity**: Does the harmony support the melody, or distract from it? (2) **Voice Independence**: In a counterpoint piece, can you hear the individual lines, or do they blur into a single block? (3) **Innovative Dissonance**: Does the composer use dissonance in a way that is expressive, or does it just sound "wrong" without purpose? (4) **Emotional Resonance**: Does the choice of harmony match the intended mood of the lyrics or the scene?
Creating[edit]
Future Frontiers: (1) **Generative Counterpoint**: Building AI systems that can write perfect "Bach-style" fugues following all the 18th-century rules. (2) **Microtonal Harmony**: Exploring harmonies built on intervals smaller than a semi-tone (found in many Eastern traditions). (3) **Atonality and Serialism**: Designing music that intentionally has *no* "Home" key, treating all 12 notes as exactly equal. (4) **Spectralism**: Analyzing the physical "overtones" of a sound and building harmonies based on the physics of air vibration.