{"id":200,"date":"2026-04-28T07:55:07","date_gmt":"2026-04-28T07:55:07","guid":{"rendered":"https:\/\/percentagedecreasecalculator.com\/?page_id=200"},"modified":"2026-05-07T14:20:37","modified_gmt":"2026-05-07T14:20:37","slug":"share-dilution-calculator","status":"publish","type":"page","link":"https:\/\/percentagedecreasecalculator.com\/share-dilution-calculator\/","title":{"rendered":"Share Dilution Calculator"},"content":{"rendered":"\n<div id=\"ownership-percentage-calculator\">\n  <style>\n    #ownership-percentage-calculator {\n      max-width: 420px;\n      margin: 20px auto;\n      padding: 20px;\n      border-radius: 12px;\n      background: #f5f5f5;\n      border: 2px solid #d1d5db;\n      box-shadow: 0 2px 6px rgba(0,0,0,0.08);\n      font-family: Arial, sans-serif;\n    }\n\n    .field { margin-bottom: 15px; }\n\n    label {\n      display: block;\n      margin-bottom: 5px;\n      font-weight: 600;\n    }\n\n    input {\n      width: 100%;\n      padding: 12px;\n      border-radius: 8px;\n      border: 1px solid #ccc;\n      font-size: 16px;\n    }\n\n    button {\n      width: 48%;\n      padding: 12px;\n      margin-top: 10px;\n      border: none;\n      border-radius: 8px;\n      font-size: 16px;\n      cursor: pointer;\n    }\n\n    .calc-btn { background: #1E5195; color: white; }\n    .calc-btn:hover { background: #163d73; }\n\n    .clear-btn { background: #575757; color: white; }\n    .clear-btn:hover { background: #3f3f3f; }\n\n    #result {\n      margin-top: 20px;\n      font-size: 20px;\n      font-weight: 700;\n      text-align: center;\n      line-height: 1.8;\n    }\n\n    .value { color: #1fa22e; }\n\n    .error {\n      color: red;\n      font-size: 16px;\n      font-weight: 600;\n      text-align: center;\n    }\n  <\/style>\n\n  <!-- Your Share -->\n  <div class=\"field\">\n    <label>Your Share (Units \/ Shares)<\/label>\n    <input type=\"number\" id=\"yourShare\" placeholder=\"e.g. 25\">\n  <\/div>\n\n  <!-- Total Shares -->\n  <div class=\"field\">\n    <label>Total Shares<\/label>\n    <input type=\"number\" id=\"totalShares\" placeholder=\"e.g. 100\">\n  <\/div>\n\n  <!-- Buttons -->\n  <div style=\"display:flex; gap:4%;\">\n    <button class=\"calc-btn\" onclick=\"calculateOwnership()\">Calculate<\/button>\n    <button class=\"clear-btn\" onclick=\"clearFields()\">Clear<\/button>\n  <\/div>\n\n  <!-- Output -->\n  <div id=\"result\"><\/div>\n\n  <script>\n    function format(num) {\n      return parseFloat(num.toFixed(2));\n    }\n\n    function calculateOwnership() {\n      const your = parseFloat(document.getElementById('yourShare').value);\n      const total = parseFloat(document.getElementById('totalShares').value);\n\n      if (isNaN(your) || isNaN(total) || your < 0 || total <= 0) {\n        document.getElementById('result').innerHTML =\n          \"<div class='error'>Please enter valid values.<\/div>\";\n        return;\n      }\n\n      if (your > total) {\n        document.getElementById('result').innerHTML =\n          \"<div class='error'>Your share cannot exceed total shares.<\/div>\";\n        return;\n      }\n\n      const percentage = (your \/ total) * 100;\n      const remaining = total - your;\n\n      document.getElementById('result').innerHTML =\n        'Ownership = <span class=\"value\">' + format(percentage) + '%<\/span><br>' +\n        'Remaining Shares = <span class=\"value\">' + remaining + '<\/span>';\n    }\n\n    function clearFields() {\n      document.getElementById('yourShare').value = \"\";\n      document.getElementById('totalShares').value = \"\";\n      document.getElementById('result').innerHTML = \"\";\n    }\n  <\/script>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">What is Share Percentage Calculator?<\/h2>\n\n\n\n<p>A share percentage calculator determines how much of a company you own based on your shares relative to total shares.<\/p>\n\n\n\n<p>\ud83d\udc49 In simple terms: It shows your ownership stake as a percentage.<\/p>\n\n\n\n<p>Important Terms:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Your Shares<\/strong> = number of shares you own<\/li>\n\n\n\n<li><strong>Total Shares<\/strong> = total shares issued by the company<\/li>\n\n\n\n<li><strong>Ownership Percentage<\/strong> = your share of the company<\/li>\n\n\n\n<li><strong>Remaining Shares<\/strong> = shares owned by others<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 Example:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your Shares = 25<\/li>\n\n\n\n<li>Total Shares = 100<\/li>\n<\/ul>\n\n\n\n<p>Result:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ownership = 25%<\/li>\n\n\n\n<li>Remaining Shares = 75<\/li>\n<\/ul>\n\n\n\n<p>Ownership percentage represents your proportion of control and profit rights in a company.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use Share Percentage Calculator?<\/h2>\n\n\n\n<p>Your calculator is designed for quick equity calculations.<\/p>\n\n\n\n<p><strong>Step-by-Step:<\/strong><\/p>\n\n\n\n<p>Step 1: Enter your shares<br>Step 2: Enter total shares<br>Step 3: Click <strong>Calculate<\/strong><br>Step 4: View results<\/p>\n\n\n\n<p><strong>Output You\u2019ll Get:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ownership Percentage (%)<\/li>\n\n\n\n<li>Remaining Shares<\/li>\n<\/ul>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your Shares = 40<\/li>\n\n\n\n<li>Total Shares = 200<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 Output:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ownership = 20%<\/li>\n\n\n\n<li>Remaining Shares = 160<\/li>\n<\/ul>\n\n\n\n<p>To compare ownership changes after investment rounds, you can also use a <a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-point-calculator\/\"><strong>percentage point calculator<\/strong>.<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate Share Percentage Manually?<\/h2>\n\n\n\n<p>You can calculate ownership percentage in one step.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Divide your shares by total shares<\/li>\n\n\n\n<li>Multiply by 100<\/li>\n<\/ol>\n\n\n\n<p>This gives your ownership percentage.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Share Percentage Formula<\/h3>\n\n\n\n<p>Ownership % = (Your Shares \u00f7 Total Shares) \u00d7 100<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">5 Example Problems of Share Percentage<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Example 1: Simple ownership<\/h4>\n\n\n\n<p>Shares = 10<br>Total = 50<\/p>\n\n\n\n<p>Result = 20%<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">Example 2: Startup equity split<\/h4>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Value<\/th><th>Number<\/th><\/tr><\/thead><tbody><tr><td>Shares<\/td><td>500<\/td><\/tr><tr><td>Total<\/td><td>2000<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Result = 25%<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">Example 3: Investor stake<\/h4>\n\n\n\n<p>Shares = 1,000<br>Total = 10,000<\/p>\n\n\n\n<p>Result = 10%<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">Example 4: Majority control<\/h4>\n\n\n\n<p>Shares = 60<br>Total = 100<\/p>\n\n\n\n<p>Result = 60%<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h4 class=\"wp-block-heading\">Example 5: Small ownership<\/h4>\n\n\n\n<p>Shares = 5<br>Total = 500<\/p>\n\n\n\n<p>Result = 1%<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">How to Interpret Your Share Percentage Results?<\/h2>\n\n\n\n<p>Your percentage determines your influence and returns.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Interpretation Table<\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Ownership %<\/th><th>Meaning<\/th><\/tr><\/thead><tbody><tr><td>50%+<\/td><td>Majority control<\/td><\/tr><tr><td>25\u201350%<\/td><td>Significant influence<\/td><\/tr><tr><td>10\u201325%<\/td><td>Moderate stake<\/td><\/tr><tr><td>Below 10%<\/td><td>Minority ownership<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\ud83d\udc49 Key insight:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Higher percentage = more control<\/li>\n\n\n\n<li>Lower percentage = less influence<\/li>\n<\/ul>\n\n\n\n<p>Ownership percentage directly affects voting rights and profit distribution.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">When Should You Use Share Percentage Calculator?<\/h2>\n\n\n\n<p>This tool is essential in finance and business.<\/p>\n\n\n\n<p>Use it when:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Splitting equity among founders<\/li>\n\n\n\n<li>Calculating investor ownership<\/li>\n\n\n\n<li>Evaluating startup funding rounds<\/li>\n\n\n\n<li>Understanding ownership dilution<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 Benefits:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Clear ownership visibility<\/li>\n\n\n\n<li>Better investment decisions<\/li>\n\n\n\n<li>Accurate equity distribution<\/li>\n\n\n\n<li>Easy comparison of ownership changes<\/li>\n<\/ul>\n\n\n\n<p>For dilution scenarios, combine this with a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/cumulative-percentage-calculator\/\">cumulative percentage calculator<\/a><\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">What Are The Limitations of Share Percentage Calculator?<\/h2>\n\n\n\n<p>While useful, it has limitations.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Does not account for share dilution automatically<\/li>\n\n\n\n<li>Assumes all shares have equal value<\/li>\n\n\n\n<li>Does not include voting rights variations<\/li>\n\n\n\n<li>Ignores convertible securities or options<\/li>\n<\/ul>\n\n\n\n<p>\ud83d\udc49 When new shares are issued, your ownership percentage can decrease even if your shares stay the same.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Related Calculators<\/h2>\n\n\n\n<p>To expand your financial and percentage analysis:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Compare ownership differences using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/percentage-point-calculator\/\">percentage point calculator<\/a><\/strong><\/li>\n\n\n\n<li>Analyze layered ownership using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/cumulative-percentage-calculator\/\">cumulative percentage calculator<\/a><\/strong><\/li>\n\n\n\n<li>Track growth using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/mom-calculator\/\">month on month percentage calculator<\/a><\/strong><\/li>\n\n\n\n<li>Plan pricing using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/markup-percentage-calculator\/\">markup percentage calculator<\/a><\/strong><\/li>\n\n\n\n<li>Analyze costs using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/food-cost-percentage-calculator\/\">food cost percentage calculator<\/a><\/strong><\/li>\n\n\n\n<li>Evaluate expenses using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/labor-cost-percentage-calculator\/\">labor cost percentage calculator<\/a><\/strong><\/li>\n\n\n\n<li>Convert values using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/percent-to-decimal\/\">percentage to decimal calculator<\/a><\/strong><\/li>\n\n\n\n<li>Analyze ratios using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/ratio-to-percentage\/\">ratio to percentage calculator<\/a><\/strong><\/li>\n\n\n\n<li>Understand percentage reduction using a <strong><a href=\"https:\/\/percentagedecreasecalculator.com\/\">percentage reduction calculator<\/a><\/strong><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">FAQs About Share Percentage Calculator<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Q1: What is share percentage?<\/h3>\n\n\n\n<p><strong>A1:<\/strong> It is the percentage of a company you own based on your shares compared to total shares.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q2: How do you calculate ownership percentage?<\/h3>\n\n\n\n<p><strong>A2:<\/strong> Divide your shares by total shares and multiply by 100.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q3: What happens when new shares are issued?<\/h3>\n\n\n\n<p><strong>A3:<\/strong> Your ownership percentage decreases unless you buy more shares.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q4: What is majority ownership?<\/h3>\n\n\n\n<p><strong>A4:<\/strong> Owning more than 50% of shares, giving control over decisions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Q5: Can ownership percentage change over time?<\/h3>\n\n\n\n<p><strong>A5:<\/strong> Yes, it changes with share issuance, buybacks, or transfers.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Your Share (Units \/ Shares) Total Shares Calculate Clear What is Share Percentage Calculator? A share percentage calculator determines how much of a company you own based on your shares relative to total shares. \ud83d\udc49 In simple terms: It shows your ownership stake as a percentage. Important Terms: \ud83d\udc49 Example: Result: Ownership percentage represents your&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-200","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages\/200","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/comments?post=200"}],"version-history":[{"count":6,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages\/200\/revisions"}],"predecessor-version":[{"id":645,"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/pages\/200\/revisions\/645"}],"wp:attachment":[{"href":"https:\/\/percentagedecreasecalculator.com\/wp-json\/wp\/v2\/media?parent=200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}