Weight Calculator Kg to Stone

Weight Calculator: Kilograms to Stone Conversion :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –border-color: #ddd; –shadow-color: rgba(0, 0, 0, 0.1); –card-background: #fff; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); line-height: 1.6; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; padding-top: 20px; padding-bottom: 40px; } .container { width: 95%; max-width: 960px; background-color: var(–card-background); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); margin-bottom: 30px; } h1, h2, h3 { color: var(–primary-color); text-align: center; margin-bottom: 20px; } h1 { font-size: 2.5em; margin-bottom: 30px; } h2 { font-size: 1.8em; border-bottom: 2px solid var(–primary-color); padding-bottom: 10px; margin-top: 40px; } h3 { font-size: 1.4em; margin-top: 25px; margin-bottom: 15px; } .loan-calc-container { background-color: var(–card-background); padding: 25px; border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); margin-bottom: 30px; } .input-group { margin-bottom: 20px; text-align: left; } .input-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(–primary-color); } .input-group input[type="number"], .input-group input[type="text"] { width: calc(100% – 22px); padding: 10px; border: 1px solid var(–border-color); border-radius: 4px; font-size: 1em; box-sizing: border-box; } .input-group input[type="number"]:focus, .input-group input[type="text"]:focus { outline: none; border-color: var(–primary-color); box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.2); } .input-group .helper-text { font-size: 0.85em; color: #666; margin-top: 5px; display: block; } .error-message { color: #dc3545; font-size: 0.85em; margin-top: 5px; display: none; /* Hidden by default */ } .error-message.visible { display: block; } .button-group { display: flex; justify-content: space-between; margin-top: 25px; gap: 10px; } .button-group button { padding: 12px 20px; border: none; border-radius: 5px; cursor: pointer; font-size: 1em; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; flex-grow: 1; } .button-group button.primary { background-color: var(–primary-color); color: white; } .button-group button.primary:hover { background-color: #003366; transform: translateY(-2px); } .button-group button.secondary { background-color: #6c757d; color: white; } .button-group button.secondary:hover { background-color: #5a6268; transform: translateY(-2px); } .button-group button.reset { background-color: #ffc107; color: #212529; } .button-group button.reset:hover { background-color: #e0a800; transform: translateY(-2px); } #results { margin-top: 30px; padding: 25px; background-color: var(–primary-color); color: white; border-radius: 8px; text-align: center; box-shadow: 0 2px 10px rgba(0, 74, 153, 0.3); } #results h3 { color: white; margin-bottom: 15px; } #results .main-result { font-size: 2.5em; font-weight: bold; margin-bottom: 10px; display: block; } #results .intermediate-values { font-size: 1.1em; margin-bottom: 15px; opacity: 0.9; } #results .formula-explanation { font-size: 0.9em; opacity: 0.8; margin-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 10px; } #results .copy-button { background-color: var(–success-color); color: white; padding: 10px 18px; border: none; border-radius: 5px; cursor: pointer; font-size: 0.95em; margin-top: 20px; transition: background-color 0.3s ease, transform 0.2s ease; } #results .copy-button:hover { background-color: #218838; transform: translateY(-2px); } table { width: 100%; border-collapse: collapse; margin-top: 25px; margin-bottom: 30px; box-shadow: 0 2px 10px var(–shadow-color); } th, td { padding: 12px 15px; text-align: left; border: 1px solid var(–border-color); } thead { background-color: var(–primary-color); color: white; } tbody tr:nth-child(even) { background-color: #f2f2f2; } caption { font-size: 1.1em; font-weight: bold; color: var(–primary-color); margin-bottom: 10px; caption-side: top; text-align: left; } canvas { display: block; margin: 25px auto; max-width: 100%; background-color: var(–card-background); border-radius: 8px; box-shadow: 0 2px 10px var(–shadow-color); } .article-content { width: 95%; max-width: 960px; background-color: var(–card-background); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); margin-top: 30px; } .article-content p { margin-bottom: 15px; } .article-content ul, .article-content ol { margin-left: 20px; margin-bottom: 15px; } .article-content li { margin-bottom: 8px; } .article-content a { color: var(–primary-color); text-decoration: none; font-weight: bold; } .article-content a:hover { text-decoration: underline; } .faq-section .faq-item { margin-bottom: 20px; padding: 15px; background-color: #eef5ff; border-left: 5px solid var(–primary-color); border-radius: 4px; } .faq-section .faq-item h3 { margin-top: 0; margin-bottom: 8px; color: var(–primary-color); font-size: 1.2em; text-align: left; } .faq-section .faq-item p { margin-bottom: 0; } .related-links ul { list-style: none; padding: 0; } .related-links li { margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px dashed var(–border-color); } .related-links li:last-child { border-bottom: none; } .related-links h3 { text-align: left; } /* Responsive adjustments */ @media (max-width: 768px) { h1 { font-size: 2em; } h2 { font-size: 1.5em; } .container, .loan-calc-container, .article-content { padding: 20px; } .button-group { flex-direction: column; } .button-group button { width: 100%; } #results .main-result { font-size: 2em; } }

Weight Calculator: Kilograms to Stone Conversion

Kg to Stone Converter

Enter your weight in kilograms.
Optionally, enter your weight in pounds.

Conversion Results

Stone: st
Pounds: lbs
Total Kilograms: kg
Formula Used: 1 stone = 6.35029 kilograms. We convert kg to stone by dividing by 6.35029. If pounds are entered, they are first converted to kg (1 lb = 0.453592 kg) and added to the kg input.
Weight Conversion Data
Unit Equivalent in Kilograms Equivalent in Pounds Equivalent in Stone
1 Kilogram 1.000 kg 2.20462 lbs 0.157473 st
1 Pound 0.453592 kg 1.000 lbs 0.071431 st
1 Stone 6.35029 kg 14.000 lbs 1.000 st
Weight Conversion Chart

What is a Weight Calculator (Kg to Stone)?

A weight calculator kg to stone is a specialized online tool designed to convert a person's or object's weight measurement from kilograms (kg) into stones (st) and pounds (lbs). This conversion is particularly useful for individuals in countries that traditionally use the imperial system for weight, such as the United Kingdom and some Commonwealth nations, while also accommodating the global standard of the metric system. It simplifies the process of understanding weight across different measurement systems, making it easier for individuals to track their health goals, compare nutritional information, or simply communicate their weight effectively regardless of the audience's preferred units.

Who should use it?

  • Individuals tracking their weight loss or gain journey who are accustomed to or need to report their weight in stones and pounds.
  • People living in or traveling to countries that primarily use the imperial system for weight.
  • Athletes and fitness enthusiasts who may receive training or dietary advice in different units.
  • Anyone needing to quickly convert a weight measurement from kilograms to stones and pounds for personal or professional reasons.
  • Health professionals communicating with patients who use different units of measurement.

Common Misconceptions:

  • Misconception: Stone is a precise, universally standardized unit. Reality: While the conversion factor is fixed (1 stone = 6.35029 kg), the practical use can sometimes be less precise than metric units.
  • Misconception: The calculator only converts kg to stone. Reality: Most modern calculators, including this one, also provide the equivalent in pounds (lbs) for a more complete imperial representation (e.g., 70 kg is approximately 11 stone and 0 lbs).
  • Misconception: Kilograms and pounds are interchangeable in the imperial system. Reality: Kilograms are metric. The imperial system uses stones and pounds. A direct conversion is necessary.

Kg to Stone Formula and Mathematical Explanation

The core of the weight calculator kg to stone lies in a straightforward conversion factor. The international agreement defines the relationship between the metric system and the imperial system's stone unit.

The Fundamental Conversion Factor:

The most critical value is the definition of one stone in kilograms:

1 stone = 6.35029 kilograms

From this, we can derive the conversion factor for kilograms to stones:

1 kilogram = 1 / 6.35029 stones ≈ 0.157473 stones

Step-by-Step Derivation:

  1. Kilograms to Stones: To convert a weight given in kilograms (let's call it 'Kg') to stones ('St'), you divide the kilogram value by the number of kilograms in one stone.
    St = Kg / 6.35029
  2. Kilograms to Pounds: To convert kilograms to pounds ('lbs'), you use the conversion factor: 1 kilogram ≈ 2.20462 pounds.
    lbs_from_kg = Kg * 2.20462
  3. Handling Optional Pounds Input: If the user also provides weight in pounds ('lbs_input'), these are first converted to kilograms to maintain consistency before being added to the primary kilogram input.
    Kg_total = Kg_input + (lbs_input * 0.453592)
    Then, this Kg_total is used for all subsequent conversions.
  4. Calculating Stone and Remaining Pounds: Once the total weight in kilograms (Kg_total) is established, we calculate the whole number of stones and the remaining pounds.
    First, convert total kg to stones: Total_Stones = Kg_total / 6.35029
    The whole number part of Total_Stones represents the number of full stones.
    Full_Stones = floor(Total_Stones)
    To find the remaining pounds, we can convert the fractional part of the stones back to pounds, or more directly, convert the total kilograms to pounds and subtract the pounds equivalent of the full stones.
    Total pounds = Kg_total * 2.20462
    Pounds from full stones = Full_Stones * 14 (since 1 stone = 14 pounds)
    Remaining_Pounds = Total_Pounds - (Full_Stones * 14)
    Alternatively, and often simpler:
    Remaining_Pounds = (Total_Stones - Full_Stones) * 14
    We round the remaining pounds to a reasonable precision (e.g., two decimal places).

Variable Explanations:

Variable Meaning Unit Typical Range
Kg Weight in Kilograms kg 0.1 kg – 1000+ kg
St Weight in Stones st 0 st – 150+ st
lbs Weight in Pounds lbs 0 lbs – 13+ lbs (remainder)
Conversion Factor (kg to st) The fixed value representing kg per stone kg/st 6.35029
Conversion Factor (kg to lbs) The fixed value representing lbs per kg lbs/kg 2.20462
Conversion Factor (lbs to kg) The fixed value representing kg per lb kg/lbs 0.453592

Practical Examples (Real-World Use Cases)

Understanding the weight calculator kg to stone is best done through practical examples:

Example 1: Standard Conversion

  • Input: Weight = 75 kg
  • Calculation:
    • Total Kilograms = 75 kg
    • Total Stones = 75 / 6.35029 ≈ 11.809 st
    • Full Stones = floor(11.809) = 11 st
    • Remaining Stones = 11.809 – 11 = 0.809 st
    • Remaining Pounds = 0.809 * 14 ≈ 11.33 lbs
    • Alternatively using pounds: Total Pounds = 75 * 2.20462 ≈ 165.346 lbs. Pounds from 11 stones = 11 * 14 = 154 lbs. Remaining Pounds = 165.346 – 154 = 11.346 lbs.
  • Output: 75 kg is approximately 11 stone and 11.3 lbs.
  • Interpretation: This is a common weight for an adult male. The conversion provides a familiar reference point for those using the imperial system.

Example 2: Including Optional Pounds Input

  • Input: Weight = 80 kg, Optional Pounds = 5 lbs
  • Calculation:
    • Pounds to Kilograms = 5 lbs * 0.453592 kg/lb ≈ 2.268 kg
    • Total Kilograms = 80 kg + 2.268 kg = 82.268 kg
    • Total Stones = 82.268 / 6.35029 ≈ 12.955 st
    • Full Stones = floor(12.955) = 12 st
    • Remaining Stones = 12.955 – 12 = 0.955 st
    • Remaining Pounds = 0.955 * 14 ≈ 13.37 lbs
    • Alternatively using pounds: Total Pounds = 82.268 * 2.20462 ≈ 181.37 lbs. Pounds from 12 stones = 12 * 14 = 168 lbs. Remaining Pounds = 181.37 – 168 = 13.37 lbs.
  • Output: 80 kg and 5 lbs is approximately 12 stone and 13.4 lbs.
  • Interpretation: This scenario demonstrates how the calculator handles combined inputs, ensuring accuracy even when partial imperial measurements are provided alongside metric. This is useful if someone knows their weight in kg but also remembers a specific pound value.

How to Use This Weight Calculator (Kg to Stone)

Using our weight calculator kg to stone is designed to be intuitive and efficient. Follow these simple steps:

  1. Enter Kilograms: Locate the input field labeled "Weight in Kilograms (kg)". Type your weight measurement in kilograms into this box. For example, if you weigh 68 kilograms, enter '68'.
  2. Enter Pounds (Optional): If you also know your weight in pounds, or if you want to refine the conversion, you can enter the pound value into the "Weight in Pounds (lbs) – Optional" field. This is useful if you have a measurement like "8 stone 10 lbs" and want to convert the '10 lbs' part accurately after entering the '8 stone' equivalent in kg.
  3. Click Calculate: Once you have entered the necessary values, click the "Calculate" button. The calculator will process your input instantly.
  4. View Results: The results section will update automatically. You will see:
    • Main Result: Your total weight displayed prominently in stones and pounds (e.g., "10 st 10.5 lbs").
    • Intermediate Values: The breakdown into exact stones and the remaining pounds, along with the total equivalent in kilograms.
    • Formula Explanation: A brief description of how the conversion was performed.
  5. Copy Results: If you need to share these results or save them elsewhere, click the "Copy Results" button. This will copy the main result, intermediate values, and key assumptions to your clipboard.
  6. Reset: To clear the fields and start a new calculation, click the "Reset" button. It will restore the input fields to sensible default values (e.g., 0 or a common starting point).

Decision-Making Guidance:

This calculator is primarily for unit conversion. However, understanding your weight in different units can aid in health-related decisions. For instance, if you're consulting a nutritionist who uses stones and pounds, having your weight readily converted can streamline the discussion. If you're comparing fitness plans, ensure you understand the unit basis for any weight-related targets.

Key Factors That Affect Weight Conversion Results

While the conversion from kilograms to stones and pounds is a purely mathematical process with fixed factors, several external factors influence the *meaning* and *application* of the weight measurement itself:

1. Accuracy of the Initial Measurement: The most crucial factor is the precision of the initial kilogram reading. If the scale used to measure kilograms is inaccurate, the converted stone and pound values will also be inaccurate. Always use a calibrated and reliable weighing scale.

2. Time of Day: Body weight naturally fluctuates throughout the day due to factors like food intake, hydration levels, and metabolic processes. Measuring weight at the same time each day (e.g., upon waking) provides the most consistent basis for tracking changes, regardless of the units used.

3. Body Composition: The conversion doesn't differentiate between muscle mass, fat mass, bone density, or water content. Two individuals with the same weight in kilograms might have vastly different body compositions, impacting their health and fitness. A higher muscle mass, for example, weighs more per unit volume than fat mass.

4. Hydration Levels: Significant changes in hydration can cause rapid fluctuations in body weight. While this doesn't alter the kg-to-stone conversion factor, it can skew perceived progress if weight is tracked without considering hydration status.

5. Clothing and Accessories: Wearing heavy clothing or accessories during measurement will add to the recorded weight. For consistent tracking, it's best to weigh yourself with minimal, consistent clothing (e.g., light indoor wear or just underwear).

6. Scale Calibration and Type: Different types of scales (e.g., analog vs. digital, home vs. clinical) can have varying levels of accuracy and precision. Ensuring the scale is properly calibrated and suitable for the intended use is vital before any conversion is considered meaningful.

7. Rounding Precision: While the conversion factors are precise, the final displayed result might be rounded (e.g., to one decimal place for pounds). This rounding is a choice in presentation, not a change in the underlying mathematical relationship.

8. Context of Use: The relevance of the converted weight depends on the context. For medical purposes, precise metric units (kg) are often preferred globally. For personal tracking in the UK, stones and pounds are more intuitive. The calculator bridges this gap, but the interpretation should align with the intended application.

Frequently Asked Questions (FAQ)

Q1: What is the exact conversion rate between kilograms and stones?

A: The internationally agreed-upon conversion is 1 stone = 6.35029 kilograms. This means 1 kilogram is approximately 0.157473 stones.

Q2: Does the calculator handle fractions of a stone?

A: Yes, the calculator typically displays the weight in stones and the remaining pounds (e.g., 11 stone 5.5 lbs), which effectively represents fractions of a stone.

Q3: Can I convert stones and pounds to kilograms using this calculator?

A: This specific calculator is designed for kg to stone conversion. However, you can input the kilogram equivalent of your stone and pound measurement (e.g., 10 stone = 63.5029 kg, so enter 63.5) to get the result.

Q4: Why is the pound value sometimes shown with decimals?

A: The conversion from kilograms to pounds results in a decimal value. While traditionally pounds were often expressed in fractions (e.g., 1/2 lb), modern calculations often show decimal values for greater precision before rounding.

Q5: Is there a difference between UK stones and US stones?

A: Yes. The "stone" as a unit of weight is primarily used in the UK and Ireland and is defined as 14 pounds. The US does not commonly use the stone as a standard unit of weight.

Q6: How accurate is the calculator?

A: The calculator uses standard, precise conversion factors. Its accuracy depends entirely on the accuracy of the initial kilogram (or pound) measurement entered by the user.

Q7: Can I use this for objects, not just people?

A: Absolutely. Weight is weight, regardless of whether it's a person or an object. The conversion formula remains the same.

Q8: What if I enter a very large weight?

A: The calculator should handle large weights accurately based on the conversion factors. For extremely large weights (e.g., industrial loads), ensure your initial measurement device is appropriate.

© 2023 Your Website Name. All rights reserved.

var kilogramsInput = document.getElementById('kilograms'); var poundsInput = document.getElementById('pounds'); var kilogramsError = document.getElementById('kilogramsError'); var poundsError = document.getElementById('poundsError'); var mainResult = document.getElementById('mainResult'); var stoneResult = document.getElementById('stoneResult'); var poundsResult = document.getElementById('poundsResult'); var totalKgResult = document.getElementById('totalKgResult'); var weightChartCanvas = document.getElementById('weightChart'); var chartInstance = null; var KG_TO_STONE_FACTOR = 6.35029; var KG_TO_LBS_FACTOR = 2.20462; var LBS_TO_KG_FACTOR = 0.453592; var STONE_TO_LBS_FACTOR = 14; function validateInput(value, inputElement, errorElement) { var isValid = true; errorElement.innerText = "; errorElement.classList.remove('visible'); inputElement.style.borderColor = '#ddd'; if (value === ") { // Allow empty for optional fields, but don't calculate if only optional is filled return true; } var numberValue = parseFloat(value); if (isNaN(numberValue)) { errorElement.innerText = 'Please enter a valid number.'; errorElement.classList.add('visible'); inputElement.style.borderColor = '#dc3545'; isValid = false; } else if (numberValue < 0) { errorElement.innerText = 'Value cannot be negative.'; errorElement.classList.add('visible'); inputElement.style.borderColor = '#dc3545'; isValid = false; } return isValid; } function calculateWeight() { var kgValue = kilogramsInput.value.trim(); var lbsValue = poundsInput.value.trim(); var kgValid = validateInput(kgValue, kilogramsInput, kilogramsError); var lbsValid = validateInput(lbsValue, poundsInput, poundsError); if (!kgValid || !lbsValid) { // If validation fails, reset results to default resetResultsDisplay(); return; } var kilograms = parseFloat(kgValue || 0); var pounds = parseFloat(lbsValue || 0); var totalKilograms = kilograms; // If pounds are entered, convert them to kg and add if (lbsValue !== '') { totalKilograms = kilograms + (pounds * LBS_TO_KG_FACTOR); } // Ensure totalKilograms is not negative after potential conversions if (totalKilograms = STONE_TO_LBS_FACTOR) { fullStones += 1; remainingPounds = 0; } var displayPounds = (remainingPounds === 0) ? "" : ` and ${remainingPounds.toFixed(1)} lbs`; var mainResultText = `${fullStones} st${displayPounds}`; mainResult.innerText = mainResultText; stoneResult.innerText = fullStones; poundsResult.innerText = remainingPounds.toFixed(1); totalKgResult.innerText = totalKilograms.toFixed(2); updateChart(totalKilograms, fullStones, remainingPounds); } function resetResultsDisplay() { mainResult.innerText = '–'; stoneResult.innerText = '–'; poundsResult.innerText = '–'; totalKgResult.innerText = '–'; if (chartInstance) { chartInstance.destroy(); chartInstance = null; } } function resetCalculator() { kilogramsInput.value = "; poundsInput.value = "; kilogramsError.innerText = "; kilogramsError.classList.remove('visible'); kilogramsInput.style.borderColor = '#ddd'; poundsError.innerText = "; poundsError.classList.remove('visible'); poundsInput.style.borderColor = '#ddd'; resetResultsDisplay(); } function copyResults() { var resultText = "Weight Conversion Results:\n"; resultText += "————————\n"; resultText += "Main Result: " + mainResult.innerText + "\n"; resultText += "Stone: " + stoneResult.innerText + " st\n"; resultText += "Pounds: " + poundsResult.innerText + " lbs\n"; resultText += "Total Kilograms: " + totalKgResult.innerText + " kg\n"; resultText += "\nKey Assumptions:\n"; resultText += "1 stone = 6.35029 kg\n"; resultText += "1 kg = 2.20462 lbs\n"; // Use a temporary textarea to copy text var textArea = document.createElement("textarea"); textArea.value = resultText; textArea.style.position = "fixed"; // Avoid scrolling to bottom textArea.style.opacity = "0"; document.body.appendChild(textArea); textArea.focus(); textArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'Results copied!' : 'Copy failed'; // Optionally show a temporary message to the user console.log(msg); } catch (err) { console.log('Unable to copy', err); } document.body.removeChild(textArea); } function updateChart(totalKg, fullStones, remainingPounds) { var ctx = weightChartCanvas.getContext('2d'); // Destroy previous chart instance if it exists if (chartInstance) { chartInstance.destroy(); } // Define chart data points var chartData = { labels: ['Kilograms', 'Stone', 'Pounds (from remainder)'], datasets: [{ label: 'Weight Components', data: [ totalKg, fullStones, remainingPounds ], backgroundColor: [ 'rgba(0, 74, 153, 0.6)', // Primary color for kg 'rgba(40, 167, 69, 0.6)', // Success color for stone 'rgba(255, 193, 7, 0.6)' // Warning color for pounds ], borderColor: [ 'rgba(0, 74, 153, 1)', 'rgba(40, 167, 69, 1)', 'rgba(255, 193, 7, 1)' ], borderWidth: 1 }] }; // Create new chart instance chartInstance = new Chart(ctx, { type: 'bar', // Use bar chart for clear comparison data: chartData, options: { responsive: true, maintainAspectRatio: false, scales: { y: { beginAtZero: true, title: { display: true, text: 'Value' } } }, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Weight Breakdown by Unit' } } } }); } // Initial calculation on load if default values are present (optional) // calculateWeight(); // Add Chart.js library dynamically if not already present // This is a common pattern, but for a single file, it's better to include it directly // For this exercise, we assume Chart.js is available or will be included separately. // If not, the chart will not render. // To make this truly self-contained without external JS, you'd need to implement // a basic charting solution using SVG or Canvas API directly, which is complex. // For demonstration, we'll assume Chart.js is available. // If you need a self-contained solution, please specify. // — Placeholder for Chart.js — // In a real-world scenario, you'd include Chart.js via a CDN or local file: // // Since we must output ONLY HTML, we'll simulate the Chart object if it's not present. // This is NOT a robust solution but allows the code structure to be valid. if (typeof Chart === 'undefined') { console.warn("Chart.js library not found. Chart will not render."); window.Chart = function() { this.destroy = function() { console.log("Dummy destroy called"); }; }; window.Chart.defaults = { global: {} }; window.Chart.controllers = {}; window.Chart.defaults.datasets = {}; window.Chart.defaults.global = {}; window.Chart.defaults.bar = {}; window.Chart.defaults.scale = {}; window.Chart.defaults.scale.ticks = {}; window.Chart.defaults.plugins = {}; window.Chart.defaults.plugins.legend = {}; window.Chart.defaults.plugins.title = {}; } // — End Placeholder —

Leave a Comment