Music Scale Calculator - Scale Notes, Semitone Pattern, and Mode

Music scale calculator that lists scale notes, the semitone pattern, and the numeric formula for major, minor, pentatonic, blues, modal, and chromatic scales from any root.

Updated: June 19, 2026 • Free Tool

Music Scale Calculator

The pitch class the scale is built on. The list covers sharp, flat, and natural spellings for all 12 pitch classes.

The pattern of semitones that defines the scale. Covers common scales, pentatonics, blues, modes, and the chromatic scale.

Sharp or flat spelling for the scale notes. Sharp fits key signatures with sharps; flat fits key signatures with flats.

Results

Scale Notes
0
Semitone Pattern 0
Numeric Formula 0
Distinct Degrees 0degrees

What Is Music Scale Calculator?

A music scale calculator lists the notes in a scale from a chosen root and reports the semitone pattern and numeric formula that define the scale. Pick a root note, choose a scale type such as major, natural minor, pentatonic, blues, or one of the modal scales, and the tool returns the spelled scale notes, the semitone pattern between consecutive notes, and the numeric formula relative to the major scale.

  • Guitarists learning a new scale shape: Pick a root and a pentatonic or mode, then read the spelled scale before practicing the fretboard shape.
  • Pianists transposing a piece: Switch the root to confirm the spelling in the new key, especially when a key signature calls for flats instead of sharps.
  • Composers sketching modal ideas: Compare Dorian, Mixolydian, Phrygian, and Lydian from the same root to see which color fits a passage.
  • Music students checking homework: Use the semitone pattern and numeric formula to verify a scale built by hand in a theory class.

The result panel reports the spelled scale, the semitone distances, the numeric formula, and the count of distinct degrees, so the calculator doubles as a quick reference for ear-training drills and key-signature checks.

Scales and chord progressions share the same chromatic-index arithmetic, so a songwriter who has just built a C Dorian scale can hand the spelled scale to a chord transposer and transpose the same progression into a new key without losing the modal color.

How Music Scale Calculator Works

The music scale calculator assigns every pitch class a number from 0 to 11 on the chromatic scale, looks up the semitone pattern that defines the chosen scale, and adds those intervals to the root one step at a time. Each running total wraps to the 0-11 range with modular arithmetic so the scale always closes the octave at the same pitch class as the root.

scaleNoteIndex[i] = (rootIndex + sum(semitonePattern[0..i-1])) mod 12 finalNoteIndex = (rootIndex + sum(semitonePattern)) mod 12 (= rootIndex for an octave-equivalent scale)
  • rootNote: The starting pitch class. Maps to a chromatic index 0-11 (C is 0, B is 11).
  • scaleType: The pattern of semitones that defines the scale (for example major is 2,2,1,2,2,2,1).
  • enharmonic: Sharp or flat spelling for the output, applied to every note in the scale.
  • scaleNotes: The spelled notes from the root through the octave, separated by spaces. The final note repeats the root one octave higher.

The numeric formula lists the scale degrees 1 through 8 as they relate to the major scale, with a flat or sharp marker on any altered degree. A scale with fewer than seven notes still closes the octave, so the formula ends at 8 even when the scale skips a degree.

The chromatic scale lists 13 spellings including the octave marker, and its semitone pattern is twelve 1s because every adjacent note is a single semitone apart.

Build a C major scale

Root note: C. Scale type: major. Enharmonic: sharp.

C is index 0. The major pattern is 2,2,1,2,2,2,1. Adding each step and wrapping mod 12 gives 0, 2, 4, 5, 7, 9, 11, 0.

Scale notes: C D E F G A B C8. Semitone pattern: 2, 2, 1, 2, 2, 2, 1. Numeric formula: 1, 2, 3, 4, 5, 6, 7, 8. Degrees: 7.

The classic seven-note diatonic scale, the reference for every other mode and the natural minor scale.

Build a C natural minor scale with flat spelling

Root note: C. Scale type: natural-minor. Enharmonic: flat.

The natural minor pattern is 2,1,2,2,1,2,2. From root 0 the indices are 0, 2, 3, 5, 7, 8, 10, 0.

Scale notes: C D Eb F G Ab Bb C8. Semitone pattern: 2, 1, 2, 2, 1, 2, 2. Numeric formula: 1, 2, b3, 4, 5, b6, b7, 8. Degrees: 7.

Same pitch classes as Eb major, with the formula flagging the lowered third, sixth, and seventh that give the minor mode its color.

According to Britannica (tuning and temperament), equal temperament divides the octave into twelve identical semitone steps, which is the basis for naming every note in a music scale on the 0-11 chromatic index.

Every running total in the scale is reduced mod 12 so the result stays inside the 0-11 chromatic range, which is the same remainder-after-division pattern a modulo calculator applies to any integer input.

Key Concepts Explained

Four ideas describe every scale the music scale calculator produces.

Chromatic Index

Every pitch class is given a number from 0 to 11 (C is 0, C#/Db is 1, D is 2, up to B is 11). Numbers let the calculator add scales without juggling accidentals by hand.

Semitone Pattern

The list of semitone distances between consecutive scale notes fully defines a scale. Major is 2,2,1,2,2,2,1; natural minor is 2,1,2,2,1,2,2; chromatic is twelve 1s.

Numeric Formula

The 1, 2, 3, 4, 5, 6, 7, 8 numbering relative to the major scale, with a flat or sharp marker on any altered degree. Natural minor 1, 2, b3, 4, 5, b6, b7, 8 shows the three lowered degrees at a glance.

Mode vs Scale

A mode is a scale built on a different degree of the same pitch class set. Dorian, Phrygian, Lydian, Mixolydian, Aeolian, and Locrian share the seven pitch classes of the major scale but start on a different root.

Each concept feeds into the next: the chromatic index lets the calculator apply a semitone pattern, the semitone pattern defines the scale, and the numeric formula shows how the scale relates to the major scale that music theory uses as the reference. Modes and scales share the same building blocks, which is why both fit on the same input form.

Each semitone on the chromatic scale also represents a fixed frequency multiplier of 2^(1/12), so the count of semitones between two pitches equals the base-2 logarithm of their frequency ratio. A log 2 calculator applies that same binary-logarithm step to any positive input, useful when a user has a pitch in Hz and needs to count semitones to a reference pitch.

How to Use This Calculator

Four steps cover a single scale lookup and a comparison between several modes from the same root.

  1. 1 Pick the root note: Open the Root Note menu and select the pitch class the scale starts on. The list covers sharp, flat, and natural spellings for all 12 pitch classes.
  2. 2 Pick the scale type: Choose from common scales, pentatonics, blues, modal scales, the whole tone scale, and the chromatic scale.
  3. 3 Choose the enharmonic spelling: Use sharp for keys with sharps in the signature, and flat for keys with flats. The same preference applies to every note in the output.
  4. 4 Read the four outputs: The result panel shows the spelled scale notes, the semitone pattern, the numeric formula, and the count of distinct degrees.

With root C, major, and sharp, the result is C D E F G A B C8 with the 2,2,1,2,2,2,1 pattern. Switching the scale type to Dorian from the same root gives C D Eb F G A Bb C8 with the 2,1,2,2,2,1,2 pattern, the same pitch class set as Bb major from its second degree.

After the spelled scale is in hand, the same semitone list can be turned into a frequency list: each scale note is the previous note multiplied by 2^(semitones/12). A frequency calculator works through that same pitch-to-ratio relationship on any wavelength or period input.

Benefits of Using This Calculator

A purpose-built tool keeps the scale database, the enharmonic spelling rules, and the octave wrap in one place.

  • Covers the scales music students actually use: Major, minor, harmonic, melodic, pentatonics, blues, and the seven diatonic modes all sit on one input form.
  • Reports scale notes and the semitone pattern together: The result panel lists the spelled scale and the underlying 2,2,1,2,2,2,1-style pattern so the user can match output to textbook notation.
  • Spelling follows the user's choice: The enharmonic preference is a first-class input, so a scale from root Ab reads with flat note names under flats and sharp note names under sharps, with no manual rewriting.
  • Numeric formula links every scale to the major scale: The 1, 2, b3, 4, 5, b6, b7, 8-style formula shows how a scale relates to the major reference, matching textbook notation.
  • Works for every root and every mode: The same form produces a correct scale for all 12 chromatic roots and 14 scale types, so a guitarist or pianist can compare modes from the same root without retyping the inputs.

Putting the spelled scale, the semitone pattern, and the numeric formula on one screen turns the page into a working reference that a music student can keep open while practicing.

Music is a hobby with ongoing costs (lessons, sheet music, instrument maintenance, string replacements), so a musician who keeps a music scale calculator handy can pair it with a hobby cost calculator that adds setup, subscriptions, and equipment replacement into one budget view.

Factors That Affect Your Results

Three variables determine the result, and two limitations tell you when to reach for a different tool.

Root note choice

The root's chromatic index is the starting point for the scale, so changing the root shifts the entire spelled scale while leaving the interval pattern intact.

Scale type and semitone pattern

Each scale type has a fixed semitone pattern (for example, Mixolydian is 2,2,1,2,2,1,2). The same pattern applies regardless of root.

Enharmonic spelling

The sharp or flat preference controls how each chromatic index is spelled in the output, so a scale from the same root in Db and C# shows the same pitch classes with different names.

  • The calculator covers the 14 most-used scales, modes, and the chromatic scale; exotic or region-specific scales outside that list are not built on the page.
  • The numeric formula describes a scale relative to the major scale, so it does not capture every microtonal or non-Western tuning.

These factors and limitations apply to every scale the tool produces, so a user who needs a scale outside the list or a non-12-tone tuning can use this calculator to learn the pattern language and then look up a more specialized reference.

According to Britannica (mode in music), the seven diatonic modes (Ionian, Dorian, Phrygian, Lydian, Mixolydian, Aeolian, and Locrian) are rotations of the major scale, so each mode shares the same seven pitch classes as the major scale but starts on a different degree.

According to Britannica (scale in music), a music scale is an ordered set of pitch classes arranged by interval, and the semitone pattern of a scale is the list of interval sizes between consecutive notes that fully defines the scale.

Music scale calculator interface with root note selector, scale type selector, enharmonic spelling choice, scale notes list, semitone pattern, and numeric formula in the results panel
Music scale calculator interface with root note selector, scale type selector, enharmonic spelling choice, scale notes list, semitone pattern, and numeric formula in the results panel

Frequently Asked Questions

Q: What is a music scale calculator?

A: A music scale calculator is a tool that takes a root note and a scale type (major, minor, pentatonic, blues, a mode, or chromatic) and returns the spelled scale notes, the semitone pattern between consecutive notes, the numeric formula relative to the major scale, and the count of distinct degrees.

Q: How do I find the notes in a music scale?

A: Pick the root note and the scale type, choose your preferred sharp or flat spelling, and read the spelled scale in the result panel. The numeric formula on the same screen shows how the scale relates to the major scale for cross-checking.

Q: What is the semitone pattern of the major scale?

A: The major scale has the semitone pattern 2, 2, 1, 2, 2, 2, 1. Adding the steps one by one from the root covers 12 semitones, which closes the octave at the same pitch class as the root.

Q: How is a natural minor scale built from a major scale?

A: The natural minor scale shares the seven pitch classes of the major scale but starts on the major scale's sixth degree. Its numeric formula is 1, 2, b3, 4, 5, b6, b7, 8, so the third, sixth, and seventh are each lowered by a semitone compared to the major reference.

Q: How many notes are in a pentatonic scale?

A: A pentatonic scale has five distinct pitch classes before the octave closes. The major pentatonic skips the fourth and seventh of the major scale; the minor pentatonic skips the second and sixth of the natural minor scale.

Q: What is the difference between a mode and a scale?

A: A mode is a scale built on a different degree of a reference scale. The seven diatonic modes (Ionian, Dorian, Phrygian, Lydian, Mixolydian, Aeolian, Locrian) all share the seven pitch classes of the major scale but start on a different degree, so each has a unique semitone pattern and a unique numeric formula.