ForHosting KIT · Developer Utilities

Relative major key calculator

This relative major key calculator identifies the major key that uses exactly the same key signature as the minor key you enter.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Supply a note name such as A minor, F-sharp minor, or B-flat minor, and the calculator returns the matching relative major. It uses the standard relationship of three semitones upward from the minor tonic while retaining the spelling that correctly represents the shared signature. The result is immediate, deterministic, and suitable for study, composition, or software workflows.

What a relative major key means

Every natural, sharp, or flat minor key has a relative major key built from the same collection of notes. The two keys therefore share a key signature, although they organize those notes around different tonal centers. A minor and C major are the familiar example: neither signature contains sharps or flats, but A feels like home in A minor while C feels like home in C major. This calculator starts with the tonic of the minor key and identifies the major tonic a minor third higher, which is equal to three semitones. The result is a relative relationship, not a parallel one. A parallel major keeps the same tonic and changes the signature, so A major is the parallel major of A minor, while C major is its relative major. That distinction matters when analyzing harmony, planning a modulation, or choosing chords that connect smoothly. The returned spelling also matters. Notes that sound alike on an equal-tempered instrument can describe different written keys, so the answer follows the notation implied by the supplied minor key rather than replacing every flat with an unrelated sharp name.

How to enter a minor key and read the answer

Enter a tonic letter from A through G, followed by an optional sharp or flat and, if desired, the word minor, the abbreviation min, or a lowercase m. Both ordinary symbols and the Unicode sharp and flat symbols are accepted, so F# minor and F♯ minor produce the same calculation. The output restates the normalized minor key, names its relative major, reports the three-semitone interval, and confirms that the two keys share a signature. For example, F-sharp minor resolves to A major; both use three sharps. C minor resolves to E-flat major; both use three flats. The calculation is deterministic and does not infer a key from audio, a melody, or a chord progression. It answers the exact theory question represented by the key name you provide. If the entered text includes unrelated words, multiple keys, or an unsupported spelling, the calculator returns an input error instead of guessing. That strict behavior is useful in lessons and software pipelines because an apparently plausible but invented key relationship is harder to notice than a clear validation message.

Using relative keys in harmony and composition

Relative major and minor keys are closely connected because their diatonic pitches and key signatures match. A songwriter can move from a minor verse toward its relative major for a brighter chorus without introducing a new written signature. An arranger can use shared chords as pivots: in A minor and C major, chords such as C major, F major, and G major belong naturally to both collections, although their harmonic functions change when the tonal center changes. Students can also use the result as a fast check while memorizing the circle of fifths. The key signature alone does not prove which relative key a passage is in; cadence, melodic emphasis, leading tones, and the location of musical rest all help establish the tonic. Harmonic minor practice may raise the seventh degree temporarily, but that accidental does not change the underlying shared key signature. Treat the calculator as an exact relationship finder, then examine the music to decide whether a real passage actually behaves as the named minor key, its relative major, or a temporary tonicization. For automated use, each request costs $0.002; the browser calculation uses the same deterministic rule without requiring a network lookup.

Check music theory homework

Confirm the relative major while practicing minor keys, key signatures, and the circle of fifths.

Plan a smooth modulation

Find the closely related major key that shares the current minor key's diatonic pitch collection.

Label songs and arrangements

Convert a known minor key into its relative major for analysis notes, chord charts, or teaching materials.

How do I find the relative major of a minor key?

Move up three semitones, or a minor third, from the minor tonic and spell the result to match the key signature. For example, A minor leads to C major.

Do relative major and minor keys have the same notes?

They use the same diatonic pitch collection and the same key signature, but they have different tonics and different harmonic functions.

Is the relative major the same as the parallel major?

No. The relative major has a different tonic and the same key signature. The parallel major has the same tonic and a different key signature.

Why is the relative major three semitones higher?

The major tonic is a minor third above the minor tonic. A minor third spans three semitones in twelve-tone equal temperament.

Does harmonic minor have a different relative major?

No. Raising the seventh degree in harmonic minor is a chromatic alteration, not a change to the underlying key signature or relative major.

What does an API request cost?

Each API request costs $0.002. The calculation is also available free in the browser.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/hobby/music-relative-major

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/hobby/music-relative-major \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"minor_key":"F# minor"}'
{
  "minor_key": "F# minor"
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "hobby.music_relative_major",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →