Please note that bra sizing can vary between brands and styles. This calculator provides an estimate based on common sizing conventions.
Understanding Sister Sizes in Bras
Finding the perfect bra fit can be a challenge. While a band and cup size combination might seem like the definitive answer, many women discover that a slightly different size can offer superior comfort and support. This is where the concept of "sister sizes" comes into play. Sister sizes refer to bra sizes that have the same cup volume but different band and cup measurements.
How Sister Sizes Work
The bra sizing system is designed so that if you change your band size by one increment, you should change your cup size by one increment in the opposite direction to maintain the same cup volume.
Going down one band size: Usually requires going up one cup size (e.g., from a 34C to a 32D).
Going up one band size: Usually requires going down one cup size (e.g., from a 34C to a 36B).
This principle is based on the idea that the band provides about 80% of the support for the bra, while the cups provide the remaining 20%. By adjusting both the band and cup size proportionally, the overall fit and support remain relatively consistent, even though the numerical measurements change.
Why Use a Sister Size Calculator?
Several situations might lead you to explore sister sizes:
Band feels too tight or too loose: If your current bra fits well in the cups but the band is uncomfortably tight or excessively loose, a sister size might be the solution without sacrificing cup fit.
Weight fluctuations: Small changes in body weight can affect band fit more noticeably than cup fit. Sister sizes can accommodate these minor shifts.
Bra stretching over time: Bands naturally stretch with wear. When a bra becomes too loose in the band, going to a smaller band size with a larger cup size can restore a snug fit.
Different bra styles or brands: Bra manufacturers and styles can have inconsistencies. What fits perfectly in one brand might feel slightly off in another. Sister sizes offer alternatives to explore.
Breast shape variations: Sometimes, a particular cup style might fit better with a slightly adjusted band size for optimal breast tissue containment.
How the Calculator Works (The Math)
Our Sister Size Bra Calculator uses a straightforward conversion based on standard bra sizing logic:
Input: You provide your current band size and cup size.
Calculation for Smaller Band Size:
The calculator identifies the band size that is two inches smaller (e.g., 34 -> 32).
It then selects the next cup size up in the alphabetical sequence (e.g., C -> D).
Therefore, a 34C's smaller band sister size is 32D.
Calculation for Larger Band Size:
The calculator identifies the band size that is two inches larger (e.g., 34 -> 36).
It then selects the previous cup size down in the alphabetical sequence (e.g., C -> B).
Therefore, a 34C's larger band sister size is 36B.
Output: The calculator displays both potential sister sizes.
It's important to remember that this is a guideline. Factors like the specific bra's construction, fabric stretch, and individual body shape mean that trying on bras is always the most reliable way to ensure a perfect fit.
function calculateSisterSizes() {
var bandSizeInput = document.getElementById("bandSize");
var cupSizeInput = document.getElementById("cupSize");
var resultDiv = document.getElementById("result");
var currentBand = parseInt(bandSizeInput.value);
var currentCup = cupSizeInput.value;
if (isNaN(currentBand) || !currentCup) {
resultDiv.innerHTML = "Please select a valid band and cup size.";
return;
}
var cupSizes = ["AA", "A", "B", "C", "D", "DD", "E", "F", "G", "H", "I", "J"];
var currentCupIndex = cupSizes.indexOf(currentCup);
if (currentCupIndex === -1) {
resultDiv.innerHTML = "Invalid cup size selected.";
return;
}
// Calculate smaller band size sister size
var smallerBand = currentBand – 2;
var largerCupIndex = currentCupIndex + 1;
var sisterSize1 = "N/A";
if (smallerBand >= 28 && largerCupIndex < cupSizes.length) {
sisterSize1 = smallerBand + cupSizes[largerCupIndex];
}
// Calculate larger band size sister size
var largerBand = currentBand + 2;
var smallerCupIndex = currentCupIndex – 1;
var sisterSize2 = "N/A";
if (largerBand = 0) {
sisterSize2 = largerBand + cupSizes[smallerCupIndex];
}
var resultHTML = "
Your Sister Sizes
";
if (sisterSize1 !== "N/A" && sisterSize2 !== "N/A") {
resultHTML += "Option 1 (Smaller Band): " + sisterSize1 + "";
resultHTML += "Option 2 (Larger Band): " + sisterSize2 + "";
} else if (sisterSize1 !== "N/A") {
resultHTML += "Option 1 (Smaller Band): " + sisterSize1 + "";
resultHTML += "Larger band size sister size is out of range.";
} else if (sisterSize2 !== "N/A") {
resultHTML += "Smaller band size sister size is out of range.";
resultHTML += "Option 2 (Larger Band): " + sisterSize2 + "";
} else {
resultHTML = "Could not determine sister sizes. Please check your inputs.";
}
resultDiv.innerHTML = resultHTML;
}