{"id":15433,"date":"2025-09-05T10:40:11","date_gmt":"2025-09-05T15:40:11","guid":{"rendered":"https:\/\/blog.misumiusa.com\/?page_id=15433"},"modified":"2025-09-08T09:46:16","modified_gmt":"2025-09-08T14:46:16","slug":"nm-to-in-lbs-converter","status":"publish","type":"page","link":"https:\/\/us.misumi-ec.com\/blog\/nm-to-in-lbs-converter\/","title":{"rendered":"Nm to in-lbs Converter | Calculator &#038; Table"},"content":{"rendered":"\n<p>Torque is often measured in newton-meters (Nm) or inch-pounds (in-lbs), depending on the application and industry standards. Converting between these two units ensures that tools, fasteners, and machinery are set to the correct specifications.  To give a very quick reference, <strong>1 Nm = 8.8507 in-lbs<\/strong>, and <strong>1 in-lbs = 0.1130 Nm<\/strong>.<\/p>\n\n\n\n<h2>Nm to in-lbs Calculator<\/h2>\n\n\n\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Newton-meters to Inch-pounds Calculator<\/title>\n    <style>\n        .nm-inlbs-calculator-container {\n            max-width: 400px;\n            margin: 0 auto;\n            padding: 20px;\n            background: #f8f9fa;\n            border-radius: 12px;\n            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        \n        .nm-inlbs-calculator-title {\n            text-align: center;\n            color: #2c3e50;\n            margin-bottom: 25px;\n            font-size: 24px;\n            font-weight: 600;\n        }\n        \n        .nm-inlbs-input-group {\n            margin-bottom: 20px;\n        }\n        \n        .nm-inlbs-input-label {\n            display: block;\n            margin-bottom: 8px;\n            color: #34495e;\n            font-weight: 500;\n            font-size: 14px;\n        }\n        \n        .nm-inlbs-input-field {\n            width: 100%;\n            padding: 12px 16px;\n            border: 2px solid #e1e8ed;\n            border-radius: 8px;\n            font-size: 16px;\n            transition: border-color 0.3s ease;\n            box-sizing: border-box;\n        }\n        \n        .nm-inlbs-input-field:focus {\n            outline: none;\n            border-color: #e74c3c;\n        }\n        \n        .nm-inlbs-result-display {\n            background: white;\n            padding: 16px;\n            border-radius: 8px;\n            border: 2px solid #fdeaea;\n            text-align: center;\n            margin-top: 20px;\n        }\n        \n        .nm-inlbs-result-text {\n            font-size: 18px;\n            color: #2c3e50;\n            margin: 0;\n        }\n        \n        .nm-inlbs-result-value {\n            font-size: 24px;\n            font-weight: bold;\n            color: #e74c3c;\n            margin: 8px 0 0 0;\n        }\n        \n        .nm-inlbs-clear-btn {\n            background: #e74c3c;\n            color: white;\n            border: none;\n            padding: 10px 20px;\n            border-radius: 6px;\n            font-size: 14px;\n            cursor: pointer;\n            margin-top: 15px;\n            transition: background-color 0.3s ease;\n        }\n        \n        .nm-inlbs-clear-btn:hover {\n            background: #c0392b;\n        }\n    <\/style>\n\n\n    <div class=\"nm-inlbs-calculator-container\">\n        <h1 class=\"nm-inlbs-calculator-title\">Newton-meters to Inch-pounds<\/h1>\n        \n        <div class=\"nm-inlbs-input-group\">\n            <label for=\"nmInlbsInput\" class=\"nm-inlbs-input-label\">Enter Newton-meters (Nm):<\/label>\n            <input type=\"number\" id=\"nmInlbsInput\" class=\"nm-inlbs-input-field\" placeholder=\"Enter value in Newton-meters\" step=\"any\" min=\"0\">\n        <\/div>\n        \n        <div class=\"nm-inlbs-result-display\">\n            <p class=\"nm-inlbs-result-text\">Result:<\/p>\n            <p class=\"nm-inlbs-result-value\" id=\"nmInlbsResultValue\">0 in-lbs<\/p>\n        <\/div>\n        \n        <button class=\"nm-inlbs-clear-btn\" onclick=\"clearNmInlbsCalculator()\">Clear<\/button>\n    <\/div>\n\n    <script>\n        \/\/ Self-contained calculator functionality with unique namespace\n        (function() {\n            const nmInlbsInput = document.getElementById('nmInlbsInput');\n            const nmInlbsResultValue = document.getElementById('nmInlbsResultValue');\n            \n            function convertNmToInLbs(newtonMeters) {\n                return newtonMeters \/ 0.112985;\n            }\n            \n            function updateNmInlbsResult() {\n                const newtonMeters = parseFloat(nmInlbsInput.value);\n                \n                if (isNaN(newtonMeters) || newtonMeters < 0) {\n                    nmInlbsResultValue.textContent = '0 in-lbs';\n                    return;\n                }\n                \n                const inchPounds = convertNmToInLbs(newtonMeters);\n                \n                \/\/ Format the result to avoid excessive decimal places\n                let formattedResult;\n                if (inchPounds % 1 === 0) {\n                    formattedResult = inchPounds.toString();\n                } else if (inchPounds < 1) {\n                    formattedResult = inchPounds.toFixed(4);\n                } else {\n                    formattedResult = inchPounds.toFixed(2);\n                }\n                \n                nmInlbsResultValue.textContent = `${formattedResult} in-lbs`;\n            }\n            \n            \/\/ Real-time conversion as user types\n            nmInlbsInput.addEventListener('input', updateNmInlbsResult);\n            nmInlbsInput.addEventListener('keyup', updateNmInlbsResult);\n            \n            \/\/ Global clear function for the button with unique name\n            window.clearNmInlbsCalculator = function() {\n                nmInlbsInput.value = '';\n                nmInlbsResultValue.textContent = '0 in-lbs';\n                nmInlbsInput.focus();\n            };\n        })();\n    <\/script>\n\n\n\n\n<p><\/p>\n\n\n\n<h2>in-lbs to Nm Calculator<\/h2>\n\n\n\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Inch-pounds to Newton-meters Calculator<\/title>\n    <style>\n        .inlbs-calculator-container {\n            max-width: 400px;\n            margin: 0 auto;\n            padding: 20px;\n            background: #f8f9fa;\n            border-radius: 12px;\n            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        \n        .inlbs-calculator-title {\n            text-align: center;\n            color: #2c3e50;\n            margin-bottom: 25px;\n            font-size: 24px;\n            font-weight: 600;\n        }\n        \n        .inlbs-input-group {\n            margin-bottom: 20px;\n        }\n        \n        .inlbs-input-label {\n            display: block;\n            margin-bottom: 8px;\n            color: #34495e;\n            font-weight: 500;\n            font-size: 14px;\n        }\n        \n        .inlbs-input-field {\n            width: 100%;\n            padding: 12px 16px;\n            border: 2px solid #e1e8ed;\n            border-radius: 8px;\n            font-size: 16px;\n            transition: border-color 0.3s ease;\n            box-sizing: border-box;\n        }\n        \n        .inlbs-input-field:focus {\n            outline: none;\n            border-color: #e74c3c;\n        }\n        \n        .inlbs-result-display {\n            background: white;\n            padding: 16px;\n            border-radius: 8px;\n            border: 2px solid #fdeaea;\n            text-align: center;\n            margin-top: 20px;\n        }\n        \n        .inlbs-result-text {\n            font-size: 18px;\n            color: #2c3e50;\n            margin: 0;\n        }\n        \n        .inlbs-result-value {\n            font-size: 24px;\n            font-weight: bold;\n            color: #e74c3c;\n            margin: 8px 0 0 0;\n        }\n        \n        .inlbs-clear-btn {\n            background: #e74c3c;\n            color: white;\n            border: none;\n            padding: 10px 20px;\n            border-radius: 6px;\n            font-size: 14px;\n            cursor: pointer;\n            margin-top: 15px;\n            transition: background-color 0.3s ease;\n        }\n        \n        .inlbs-clear-btn:hover {\n            background: #c0392b;\n        }\n    <\/style>\n\n\n    <div class=\"inlbs-calculator-container\">\n        <h1 class=\"inlbs-calculator-title\">Inch-pounds to Newton-meters<\/h1>\n        \n        <div class=\"inlbs-input-group\">\n            <label for=\"inlbsInput\" class=\"inlbs-input-label\">Enter inch-pounds (in-lbs):<\/label>\n            <input type=\"number\" id=\"inlbsInput\" class=\"inlbs-input-field\" placeholder=\"Enter value in inch-pounds\" step=\"any\" min=\"0\">\n        <\/div>\n        \n        <div class=\"inlbs-result-display\">\n            <p class=\"inlbs-result-text\">Result:<\/p>\n            <p class=\"inlbs-result-value\" id=\"inlbsResultValue\">0 Nm<\/p>\n        <\/div>\n        \n        <button class=\"inlbs-clear-btn\" onclick=\"clearInlbsCalculator()\">Clear<\/button>\n    <\/div>\n\n    <script>\n        \/\/ Self-contained calculator functionality with unique namespace\n        (function() {\n            const inlbsInput = document.getElementById('inlbsInput');\n            const inlbsResultValue = document.getElementById('inlbsResultValue');\n            \n            function convertInLbsToNm(inchPounds) {\n                return inchPounds * 0.112985;\n            }\n            \n            function updateInlbsResult() {\n                const inchPounds = parseFloat(inlbsInput.value);\n                \n                if (isNaN(inchPounds) || inchPounds < 0) {\n                    inlbsResultValue.textContent = '0 Nm';\n                    return;\n                }\n                \n                const newtonMeters = convertInLbsToNm(inchPounds);\n                \n                \/\/ Format the result to avoid excessive decimal places\n                let formattedResult;\n                if (newtonMeters % 1 === 0) {\n                    formattedResult = newtonMeters.toString();\n                } else if (newtonMeters < 1) {\n                    formattedResult = newtonMeters.toFixed(4);\n                } else {\n                    formattedResult = newtonMeters.toFixed(2);\n                }\n                \n                inlbsResultValue.textContent = `${formattedResult} Nm`;\n            }\n            \n            \/\/ Real-time conversion as user types\n            inlbsInput.addEventListener('input', updateInlbsResult);\n            inlbsInput.addEventListener('keyup', updateInlbsResult);\n            \n            \/\/ Global clear function for the button with unique name\n            window.clearInlbsCalculator = function() {\n                inlbsInput.value = '';\n                inlbsResultValue.textContent = '0 Nm';\n                inlbsInput.focus();\n            };\n        })();\n    <\/script>\n\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2>Nm to in-lbs Conversion Table<\/h2>\n\n\n\n\n\n\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Nm to in-lbs Conversion Table<\/title>\n    <style>\n        .torque-conversion-table {\n            border-collapse: collapse;\n            margin: 20px auto;\n            font-family: Arial, sans-serif;\n            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n            border-radius: 8px;\n            overflow: hidden;\n            background-color: #fff;\n        }\n\n        .torque-conversion-table th {\n            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n            color: white;\n            padding: 15px 20px;\n            text-align: center;\n            font-weight: bold;\n            font-size: 16px;\n            letter-spacing: 0.5px;\n        }\n\n        .torque-conversion-table td {\n            padding: 12px 20px;\n            text-align: center;\n            border-bottom: 1px solid #e0e0e0;\n            transition: all 0.3s ease;\n            font-size: 14px;\n        }\n\n        .torque-conversion-table tr:hover td {\n            background-color: #f0f4ff;\n            transform: scale(1.02);\n            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);\n        }\n\n        .torque-conversion-table tr:nth-child(even) td {\n            background-color: #f8f9fa;\n        }\n\n        .torque-conversion-table tr:nth-child(even):hover td {\n            background-color: #e8f0ff;\n        }\n\n        .torque-conversion-table tr:last-child td {\n            border-bottom: none;\n        }\n\n        .torque-conversion-table td:first-child {\n            font-weight: 600;\n            color: #333;\n        }\n\n        .torque-conversion-table td:last-child {\n            color: #666;\n        }\n    <\/style>\n\n\n    <table class=\"torque-conversion-table\">\n        <thead>\n            <tr>\n                <th>Newton-meters (Nm)<\/th>\n                <th>Inch-pounds (in-lbs)<\/th>\n            <\/tr>\n        <\/thead>\n        <tbody>\n            <tr><td>1<\/td><td>8.85<\/td><\/tr>\n            <tr><td>2<\/td><td>17.70<\/td><\/tr>\n            <tr><td>3<\/td><td>26.55<\/td><\/tr>\n            <tr><td>4<\/td><td>35.40<\/td><\/tr>\n            <tr><td>5<\/td><td>44.25<\/td><\/tr>\n            <tr><td>6<\/td><td>53.10<\/td><\/tr>\n            <tr><td>7<\/td><td>61.95<\/td><\/tr>\n            <tr><td>8<\/td><td>70.80<\/td><\/tr>\n            <tr><td>9<\/td><td>79.65<\/td><\/tr>\n            <tr><td>10<\/td><td>88.50<\/td><\/tr>\n            <tr><td>15<\/td><td>132.75<\/td><\/tr>\n            <tr><td>20<\/td><td>177.00<\/td><\/tr>\n            <tr><td>25<\/td><td>221.25<\/td><\/tr>\n            <tr><td>30<\/td><td>265.50<\/td><\/tr>\n            <tr><td>40<\/td><td>354.00<\/td><\/tr>\n            <tr><td>50<\/td><td>442.50<\/td><\/tr>\n            <tr><td>60<\/td><td>531.00<\/td><\/tr>\n            <tr><td>70<\/td><td>619.50<\/td><\/tr>\n            <tr><td>80<\/td><td>708.00<\/td><\/tr>\n            <tr><td>90<\/td><td>796.50<\/td><\/tr>\n            <tr><td>100<\/td><td>885.00<\/td><\/tr>\n        <\/tbody>\n    <\/table>\n\n\n\n\n\n<h2>Torque Formula Nm to in-lbs<\/h2>\n\n\n\n<p>The formula to convert newton-meters (Nm) to inch-pounds (in-lbs) is:<\/p>\n\n\n\n<p><strong>in-lbs = Nm \u00d7 8.8507<\/strong><\/p>\n\n\n\n<p><strong>Example<\/strong><\/p>\n\n\n\n<p>If you have 5 Nm of torque:<\/p>\n\n\n\n<p>5 \u00d7 8.8507 = 44.25 in-lbs<\/p>\n\n\n\n<p>So, 5 Nm = 44.25 in-lbs.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized is-style-default\"><img loading=\"lazy\" src=\"https:\/\/blog.misumiusa.com\/wp-content\/uploads\/2025\/09\/Torque-Image10-1.jpg\" alt=\"Wrench and bolt image showing how torque works.\" class=\"wp-image-15445\" width=\"768\" height=\"512\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><a href=\"https:\/\/us.misumi-ec.com\/\" title=\"\">MISUMI USA<\/a> offers a wide range of Torque Tools\u2014both standard and metric\u2014including <a href=\"https:\/\/us.misumi-ec.com\/vona2\/fs_processing\/T0600000000\/T0606000000\/\" title=\"\">torque wrenches<\/a>, <a href=\"https:\/\/us.misumi-ec.com\/vona2\/fs_processing\/T0600000000\/T0608000000\/\" title=\"\">torque screwdrivers<\/a>, and more. If you\u2019re unsure which Torque product will best suits your application, our engineering team is here to <a href=\"https:\/\/us.misumi-ec.com\/service\/info\/help-center\/product-support.html\" title=\"\">help<\/a>. For more technical insights, explore our other manufacturing-focused tables and articles, such as a <a href=\"https:\/\/us.misumi-ec.com\/blog\/metric-bolt-torque-chart-specs\/\" title=\"\">Metric Bolt Torque Chart<\/a>.<\/p>\n\n\n\n<p>Author: <a href=\"https:\/\/us.misumi-ec.com\/blog\/author\/sbredemann\/\" title=\"\">Scott Bredemann<\/a> | Updated: 9\/5\/2025<\/p>\n\n\n\n<p class=\"has-small-font-size\"><strong>Disclaimer:<\/strong><br>The content on this webpage is for informational purposes only. MISUMI makes no guarantees, expressed or implied, regarding the accuracy, completeness, or validity of the information. Performance parameters, tolerances, designs, materials, or processes should not be assumed to reflect third-party suppliers\u2019 or manufacturers\u2019 deliverables within MISUMI\u2019s network. Buyers are responsible for specifying their part requirements<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Torque is often measured in newton-meters (Nm) or inch-pounds (in-lbs), depending on the application and industry standards. Converting between these two units ensures that tools, fasteners, and machinery are set to the correct specifications. To give a very quick reference, 1 Nm = 8.8507 in-lbs, and 1 in-lbs = 0.1130 Nm. Nm to in-lbs Calculator Newton-meters to Inch-pounds Calculator Newton-meters [&hellip;]<\/p>\n","protected":false},"author":70,"featured_media":15446,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false},"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/pages\/15433"}],"collection":[{"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/users\/70"}],"replies":[{"embeddable":true,"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/comments?post=15433"}],"version-history":[{"count":5,"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/pages\/15433\/revisions"}],"predecessor-version":[{"id":15452,"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/pages\/15433\/revisions\/15452"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/media\/15446"}],"wp:attachment":[{"href":"https:\/\/us.misumi-ec.com\/blog\/wp-json\/wp\/v2\/media?parent=15433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}