{"id":105,"date":"2023-07-17T04:42:26","date_gmt":"2023-07-17T04:42:26","guid":{"rendered":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"},"modified":"2023-07-17T04:42:26","modified_gmt":"2023-07-17T04:42:26","slug":"%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4","status":"publish","type":"post","link":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/","title":{"rendered":"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0"},"content":{"rendered":"<p>\ub450 \uac1c \uc774\uc0c1\uc758 \uc22b\uc790\uc758 <strong>\ucd5c\uc18c \uacf5\ubc30\uc218(LCM)<\/strong> \ub294 \uc774\ub4e4 \uc22b\uc790\uc758 \uacf5\ud1b5\ub41c \ucd5c\uc18c(0\uc774 \uc544\ub2cc) \ubc30\uc218\uc785\ub2c8\ub2e4. \uc720\uc0ac\ud55c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacc4\uc0b0\ub418\uc9c0\ub9cc \uc774\ub294 <a href=\"https:\/\/mathority.org\/ko\/gcd\u1105\u1173\u11af-\u1100\u1168\u1109\u1161\u11ab\u1112\u1161\u1103\u1161\/\" target=\"_blank\" rel=\"noreferrer noopener\">\ucd5c\ub300 \uacf5\uc57d\uc218<\/a> \uc758 \uc5ed\uc5f0\uc0b0\uc785\ub2c8\ub2e4. LCM\uc744 \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6b0\uace0 \uc2f6\ub2e4\uba74 \uacc4\uc18d\ud574\uc11c \uc77d\uc5b4 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. \uc774 \ubb38\uc11c\uc5d0\uc11c\ub294 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \ucc3e\ub294 \ubaa8\ub4e0 \uc808\ucc28(\uac00\uc7a5 \ub2e8\uc21c\ud55c \uac83\ubd80\ud130 \uac00\uc7a5 \ubcf5\uc7a1\ud55c \uac83\uae4c\uc9c0)\ub97c \uc124\uba85\ud560 \uac83\uc774\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4.<\/p>\n<h2 id=\"calculadora-de-mcm\" class=\"wp-block-heading\"> <span id=\"Calculadora_de_mcm\">lcm \uacc4\uc0b0\uae30<\/span><\/h2>\n<p> lcm\uc744 \uc5bb\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc774\uc57c\uae30\ud558\uae30 \uc804\uc5d0 \uc774 \ud398\uc774\uc9c0\uc5d0 <strong>\ucd5c\uc18c \uacf5\ubc30\uc218 \uacc4\uc0b0\uae30\uac00<\/strong> \uc788\ub2e4\ub294 \uac83\uc744 \uc54c\uc544\ub450\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uc6d0\ud558\ub294 \ubaa8\ub4e0 \uc22b\uc790\uc758 lcm\uc744 \uacc4\uc0b0\ud560 \uc218 \uc788\uc73c\uba70, \uc774 \ubc29\ubc95\uc73c\ub85c \uc5f0\uc2b5 \uacb0\uacfc\ub97c \ube44\uad50\ud558\uc5ec \ubb38\uc81c\ub97c \uc62c\ubc14\ub974\uac8c \ud480\uc5c8\ub294\uc9c0 \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p><script language=\"javascript\"><\/p>\n<p>function MCD(){\n  if (arguments.length<2) return false;\n  if (arguments.length==2)return (arguments[1]==0?arguments[0]:MCD(arguments[1],arguments[0]%arguments[1]));\n  var arr=[].splice.call(arguments,0);\n  arr.splice(0,2,MCD(arr[0],arr[1]));\n  return MCD.apply(window,arr);\n}\n \nfunction MCM(){\nif (arguments.length<2) return false;\n  if (arguments.length==2)return arguments[0]*arguments[1]\/MCD(arguments[0],arguments[1]);\n  var arr=[].splice.call(arguments,0);\n  arr.splice(0,2,MCM(arr[0],arr[1]));\n  return MCM.apply(window,arr);\n} \n \nfunction calcularMCM() {\n  var input = document.getElementById('dataInput').value;\n  var numeros = [];\n  var numeroConcreto = 0; \n \n  for(var i = 0; i < input.length; i++) { \n    if (input[i] == ',') { \n      numeros.push(parseInt(input.substring(numeroConcreto,i))); \n      numeroConcreto = i + 1; \n    } else if (i == input.length - 1) { \n      numeros.push(parseInt(input.substring(numeroConcreto))); \n    }\n  }\n  document.getElementById('MCM').innerText = 'El MCM es: ' +  MCM.apply(window, numeros); \n  } \n \n<\/script><\/p>\n<form id=\"formMCM\" style=\"padding-top: 1rem;\" name=\"formMCM\"><label>\ub35c \uc77c\ubc18\uc801\uc778 \ub2e4\uc911 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uc815\uc218\ub97c \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc785\ub825\ud558\uc138\uc694.<\/label> <\/p>\n<p><input id=\"dataInput\" name=\"dataInput\" pattern=\"^\\d+[0-9,]+\\d+$\" required=\"\" size=\"30\" type=\"text\" placeholder=\"12,60,48\"> <button type=\"button\">lcm\uc744 \uacc4\uc0b0\ud558\ub2e4<\/button> <\/p>\n<div id=\"MCM\"><\/div>\n<\/form>\n<h2 id=\"como-calcular-el-minimo-comun-multiplo\" class=\"wp-block-heading\"><span id=\"Como_calcular_el_minimo_comun_multiplo\">\ucd5c\uc18c \uacf5\ubc30\uc218\ub97c \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?<\/span><\/h2>\n<p> <strong>\ub450 \uac1c \uc774\uc0c1\uc758 \uc22b\uc790\uc758 \ucd5c\uc18c \uacf5\ubc30\uc218\ub97c \ucc3e\uc73c<\/strong> \ub824\uba74 \uc544\ub798\uc5d0\uc11c \uc124\uba85\ud558\ub294 \uc138 \uac00\uc9c0 \ubc29\ubc95 \uc911 \ud558\ub098\ub97c \ub530\ub77c\uc57c \ud569\ub2c8\ub2e4. \ub2e4\uc74c\uc73c\ub85c, \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \uac01 \uc808\ucc28\ub97c \uc790\uc138\ud788 \uc124\uba85\ud558\uba74\uc11c \uac01 \uc808\ucc28\uc758 \uc7a5\uc810\uacfc \ub2e8\uc810\ub3c4 \uc54c\ub824\ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4. \uc774\ub807\uac8c \ud558\uba74 \ubb38\uc81c\uc758 LCM\uc744 \uc27d\uace0 \ube60\ub974\uac8c \ud574\uacb0\ud558\uae30 \uc704\ud574 \uac01 \uc0c1\ud669\uc5d0\uc11c \uc5b4\ub5a4 \uac83\uc744 \uc120\ud0dd\ud574\uc57c \ud558\ub294\uc9c0 \uc54c \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3 id=\"metodo-1-listado-de-multiplos\" class=\"wp-block-heading\"> \ubc29\ubc95 1: \ub2e4\uc911 \ubaa9\ub85d<\/h3>\n<p> \uccab \ubc88\uc9f8 \ubc29\ubc95\uc740 LCM\uc5d0\uc11c \uacc4\uc0b0\ud558\ub824\ub294 \uc22b\uc790\uc758 \ubc30\uc218 \ubaa9\ub85d\uc744 \ub9cc\ub4dc\ub294 \uac83\uc785\ub2c8\ub2e4. \uadf8\ub7f0 \ub2e4\uc74c <strong>\ubaa8\ub4e0 \ubaa9\ub85d\uc5d0\uc11c \ubc18\ubcf5\ub418\ub294 \uac00\uc7a5 \uc791\uc740 \uac12\uc744<\/strong> \ucc3e\uc544\uc57c \ud569\ub2c8\ub2e4. \uc774\ub807\uac8c \ud558\uba74 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \uac16\uac8c \ub429\ub2c8\ub2e4. \uadf8\ub7f0 \ub2e4\uc74c lcm (5, 6) \uc608\ub97c \ud1b5\ud574 \uc774\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. <\/p>\n<div class=\"wp-block-columns is-layout-flex wp-container-83\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> <strong>5\uc758 \ubc30\uc218:<\/strong> 5, 10, 15, 20, 25, <span class=\"has-inline-color has-vivid-green-cyan-color\">30<\/span> , 35, 40...<\/p>\n<p> <strong>6\uc758 \ubc30\uc218:<\/strong> 6, 12, 18, 24, <span class=\"has-inline-color has-vivid-green-cyan-color\">30<\/span> , 36, 42, 48...<\/p>\n<\/div>\n<div class=\"wp-block-column is-layout-flow\">\n<p> \uc6b0\ub9ac\ub294 \uac00\uc7a5 \uc791\uc740 \uacf5\ud1b5\uac12\uc744 \ucc3e\uace0 \uc788\uc73c\uba70 \uc774\ubbf8 lcm\uc744 \uac00\uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<p> lcm (5, 6) = 30<\/p>\n<\/div>\n<\/div>\n<h3 id=\"metodo-2-descomposicion-factorial\" class=\"wp-block-heading\"> \ubc29\ubc95 2: \uacc4\uc2b9 \ubd84\ud574<\/h3>\n<p> \ub458\uc9f8, \uc22b\uc790\ub97c \uc778\uc218\ubd84\ud574\ud558\ub3c4\ub85d \uc120\ud0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubcf4\ub2e4 \uad6c\uccb4\uc801\uc73c\ub85c \ub9d0\ud558\uba74, \uc774 \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uba74 <strong>\ud070 \uc22b\uc790\uc758 pcm\uc744 \ub354 \uc27d\uac8c \uacc4\uc0b0\ud560<\/strong> \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ud070 \uc218\uc758 lcm\uc744 \uc218\ud589\ud560 \ub54c \ubc29\ubc95 1\uc744 \ub530\ub974\ub294 \uac83\uc740 \ub290\ub9ac\uace0 \uc9c0\ub8e8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc65c\ub0d0\ud558\uba74 \ub2e8\uc21c\ud788 \ub9e4\uc6b0 \uae34 \ubc30\uc218 \ubaa9\ub85d\uc744 \uc791\uc131\ud574\uc57c \ud558\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. \uc774 \ub450 \ubc88\uc9f8 \uc808\ucc28\ub294 \ucc98\uc74c\uc5d0\ub294 \uc774\ud574\ud558\uae30\uac00 \uc870\uae08 \ub354 \ubcf5\uc7a1\ud560 \uc218 \uc788\uc9c0\ub9cc \uba54\ucee4\ub2c8\uc998\uc744 \uc774\ud574\ud558\uba74 \uc774\uc804 \uc808\ucc28\uc5d0 \ube44\ud574 \ub9ce\uc740 \uc7a5\uc810\uc774 \uc788\uc2b5\ub2c8\ub2e4. \uc989, \ub530\ub77c\uc57c \ud560 \uc808\ucc28\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<ul>\n<li> <strong>\uacc4\uc2b9 \ubd84\ud574:<\/strong> \uccab \ubc88\uc9f8 \ub2e8\uacc4\ub294 LCM\uc5d0 \ud3ec\ud568\ud560 \ubaa8\ub4e0 \uc22b\uc790\ub97c \uc18c\uc778\uc218\ub85c \ubd84\ud574\ud558\ub294 \uac83\uc785\ub2c8\ub2e4. <a href=\"https:\/\/ekuatio.com\/apuntes-de-matematicas\/numeros-aritmetica\/descomposicion-factorial-o-factorizacion\/\" target=\"_blank\" rel=\"noreferrer noopener\">\uc22b\uc790\ub97c \uacc4\uc2b9\uc801\uc73c\ub85c \ubd84\ud574\ud558\ub294 \ubc29\ubc95\uc744<\/a> \ubaa8\ub974\ub294 \uacbd\uc6b0 \uc774 \ub9c8\uc9c0\ub9c9 \ub9c1\ud06c\ub97c \uc785\ub825\ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. \uc5ec\uae30\uc5d0\uc11c \uc22b\uc790\ub97c \ube60\ub974\uace0 \ud6a8\uc728\uc801\uc73c\ub85c \ub2e8\uc21c\ud654\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud55c \ucd5c\uace0 \uc218\uc900\uc758 \uc124\uba85\uc744 \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\ub2e8\uc77c \uc218\ud559\uc801 \ud45c\ud604\uc2dd \ub9cc\ub4e4\uae30:<\/strong> \ubaa8\ub4e0 \uc22b\uc790\ub97c \uc18c\uc778\uc218\ub85c \ud45c\ud604\ud55c \uacbd\uc6b0 \uac00\uc7a5 \ud070 \uc9c0\uc218\ub85c \uc62c\ub9bc\ub41c \uacf5\ud1b5 \ubc0f \ube44\uacf5\ud1b5 \uc22b\uc790\ub97c \uc120\ud0dd\ud569\ub2c8\ub2e4. \uadf8\ub7f0 \ub2e4\uc74c \uc774\ub97c \ud558\ub098\uc758 \uc218\ud559\uc801 \ud45c\ud604\uc73c\ub85c \uae30\ub85d\ud558\uace0 \ub9c8\uc9c0\ub9c9\uc73c\ub85c \ud544\uc694\ud55c \uacf1\uc148 \ubc0f\/\ub610\ub294 \uac70\ub4ed\uc81c\uacf1\uc744 \ud574\uacb0\ud569\ub2c8\ub2e4. \uadf8\ub9ac\uace0 \ub2f9\uc2e0\uc740 \uc774\ubbf8 lcm\uc774\ub77c\ub294 \uc22b\uc790 \uac12\uc744 \uac16\uac8c \ub420 \uac83\uc785\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h3 id=\"metodo-3-formula-matematica\" class=\"wp-block-heading\"> \ubc29\ubc95 3: \uc218\ud559 \uacf5\uc2dd<\/h3>\n<p> GCD\uc640 \ub2e4\uc74c \uc218\ud559 \uacf5\uc2dd\uc744 \uc0ac\uc6a9\ud558\uc5ec \ucd5c\uc18c \uacf5\ubc30\uc218\ub97c \uad6c\ud558\ub294 \ub9c8\uc9c0\ub9c9 \ubc29\ubc95\uc774 \uc788\uc2b5\ub2c8\ub2e4. <\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" class=\"wp-image-5593 lazyload\" src=\"https:\/\/mathority.org\/wp-content\/uploads\/2023\/07\/formule-lcm.webp\" sizes=\"auto, \" srcset=\"\" alt=\"lcm \uacf5\uc2dd\" width=\"409\" height=\"181\" data-src=\"\"><\/figure>\n<\/div>\n<p> \uc774 \uacf5\uc2dd\uc744 \uc0ac\uc6a9\ud558\uba74 \ubaa8\ub4e0 \uc22b\uc790\uc758 lcm\uc744 \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc2e4\uc81c \uc608\ub97c \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. lcm(2.6)\uc744 \uacc4\uc0b0\ud558\ub824\uba74 \ub2e8\uc21c\ud788 (2 x 6) \/ 2 = 6 \uc5f0\uc0b0\uc744 \ud480\uba74 \ub429\ub2c8\ub2e4. \ubcf4\uc2dc\ub2e4\uc2dc\ud53c <strong>\uac04\ub2e8\ud55c \ubc29\ubc95<\/strong> \uc774\ubbc0\ub85c \uc774\ubbf8 \uacc4\uc0b0\uc744 \ud480\uc5c8\uc2b5\ub2c8\ub2e4. GCD\uac00 \uc788\uac70\ub098 \uc27d\uac8c \uacc4\uc0b0\ud560 \uc218 \uc788\uc73c\uba74 <strong>\ube60\ub985\ub2c8\ub2e4<\/strong> .<\/p>\n<h3 id=\"trucos-calcular-el-mcm-rapidamente\" class=\"wp-block-heading\"> lcm\uc744 \ube60\ub974\uac8c \uacc4\uc0b0\ud558\uae30 \uc704\ud55c \ud301<\/h3>\n<p> \ubc29\uae08 \uc124\uba85\ud55c \uc138 \uac00\uc9c0 \ubc29\ubc95\uc744 \uc775\ud78c \ud6c4\uc5d0\ub294 \uc9c0\uae08 \uc774\uc57c\uae30\ud560 <strong>\ucd5c\uc18c\uacf5\ubc30\uc218\uc758 \uc18d\uc131\uc744<\/strong> \uc77d\uc5b4 \ubcf4\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. \ub355\ubd84\uc5d0 \uc774\ubbf8 \uc124\uba85\ud55c \uc804\ub7b5\uc744 \uc0ac\uc6a9\ud558\uc9c0 \uc54a\uace0\ub3c4 LCM\uc744 \ub9e4\uc6b0 \ube60\ub974\uac8c \uacc4\uc0b0\ud560 \uc218 \uc788\ub294 \ud2b9\uc815 \uc0c1\ud669\uc744 \uc2dd\ubcc4\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<ul>\n<li> <strong>\ub450 \ubc88\uc9f8\ub85c \ub098\ub20c \uc218 \uc788\ub294 \uccab \ubc88\uc9f8 \uc22b\uc790:<\/strong> a\uac00 b\ub97c \ub098\ub20c \ub54c a\uc640 b\uc758 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \uacc4\uc0b0\ud558\ub824\uba74 \uc774 \ub450 \uc22b\uc790\uc758 ppcm\uc774 \uac00\uc7a5 \ud07d\ub2c8\ub2e4(\uc774 \uacbd\uc6b0 b). \uc608\ub97c \ub4e4\uc5b4, 2\uc640 8\uc758 lcm\uc744 \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0 \uacb0\uacfc\ub294 \uac00\uc7a5 \ud06c\ubbc0\ub85c 8\uc774 \ub429\ub2c8\ub2e4.<\/li>\n<li> <strong>\ub450 \uac1c\uc758 \uc18c\uc218:<\/strong> \ub450 \uac1c\uc758 <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener\">\uc18c\uc218\ub97c<\/a> \ucc3e\ub294 \uacbd\uc6b0 \uac00\uc7a5 \ube60\ub978 \ubc29\ubc95\uc740 \ub450 \uc18c\uc218\ub97c \uacf1\ud558\ub294 \uac83\uc774\uba70 \uacb0\uacfc\ub294 ppcm\uc774 \ub429\ub2c8\ub2e4. \uc774\ub294 \ucd5c\ub300 \uacf5\uc57d\uc218\uac00 1\uc774\uae30 \ub54c\ubb38\uc5d0 \ub17c\ub9ac\uc801\uc785\ub2c8\ub2e4. \uc989, \uc22b\uc790\ub97c \uc22b\uc790 \uc790\uccb4\ubcf4\ub2e4 \ub354 \uac04\ub2e8\ud55c \uc694\uc18c\ub85c \ubd84\ud574\ud560 \uc218 \uc5c6\uc73c\ubbc0\ub85c \uc22b\uc790\ub97c \ud568\uaed8 \uacf1\ud558\ub294 \uac83\ub9cc \uac00\ub2a5\ud558\ub2e4\ub294 \uc758\ubbf8\uc785\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, 3\uacfc 5\uc758 LCM\uc740 3 x 5 = 15\uc758 \uacb0\uacfc\uac00 \ub429\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h3 id=\"como-sacar-el-minimo-comun-multiplo-en-fracciones\" class=\"wp-block-heading\"> \ubd84\uc218\uc5d0\uc11c \ucd5c\uc18c \uacf5\ubc30\uc218\ub97c \uad6c\ud558\ub294 \ubc29\ubc95\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?<\/h3>\n<p> <strong>\ubd84\uc218\uc758 \ub367\uc148\uc774\ub098 \ube84\uc148\uc744<\/strong> \ud480\ub824\uba74 lcm \uacfc \ub3d9\uc77c\ud558\uc9c0\ub9cc \ubd84\uc218\uc5d0 \uc801\uc6a9\ub418\ub294 \ucd5c\uc18c \uacf5\ud1b5 \ubd84\ubaa8\ub97c \uacc4\uc0b0\ud574\uc57c \ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc6b0\ub9ac\ub294 \ub450 \ubd84\ubaa8\uc758 lcm\uc744 \ucc3e\uace0 \uadf8 \ud569\uc744 \ub2e8\uc77c \ubd84\uc218\ub85c \ud45c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc2e4\uc218 \ubd84\uc218 \uacc4\uc0b0\uc5d0 \ucd5c\uc800 \uacf5\ud1b5 \ubd84\ubaa8\uac00 \uc5b4\ub5bb\uac8c \uc801\uc6a9\ub418\ub294\uc9c0 \ud655\uc778\ud558\ub824\uba74 <a href=\"https:\/\/www.matematicas18.com\/es\/tutoriales\/aritmetica\/fracciones\/suma-de-fracciones\/\" target=\"_blank\" rel=\"noreferrer noopener\">\uc774 \ub9c1\ud06c\ub97c<\/a> \uc785\ub825\ud558\uc138\uc694.<\/p>\n<h2 id=\"mcm-en-la-calculadora-cientifica\" class=\"wp-block-heading\"> <span id=\"Mcm_en_la_calculadora_cientifica\">\uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\uc758 Lcm<\/span><\/h2>\n<p> \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\uc5d0 \uc788\ub294 LCM \ud0a4\ub97c \uc0ac\uc6a9\ud558\uba74 \ub450 \uc815\uc218\uc758 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener\">\uce74\uc2dc\uc624 \uacc4\uc0b0\uae30<\/a> \uc758 \uacbd\uc6b0 \ub530\ub77c\uc57c \ud560 \uad6c\ubb38\uc774\ub098 \uc808\ucc28\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. \uba3c\uc800 <strong>APHA + MCM\uc744<\/strong> \ub204\ub985\ub2c8\ub2e4(\uc774 \ub9c8\uc9c0\ub9c9 \ud0a4\ub294 \uac08\uc0c9\uc73c\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4). \uc774 \uc791\uc5c5\uc774 \uc644\ub8cc\ub418\uba74 \ub450 \uc22b\uc790\ub97c \ubaa8\ub450 \uc785\ub825\ud560 \uc218 \uc788\uc9c0\ub9cc \uc27c\ud45c( <strong>SHIFT + ,<\/strong> )\ub85c \uad6c\ubd84\ud574\uc57c \ud55c\ub2e4\ub294 \uc810\uc744 \uae30\uc5b5\ud558\uc138\uc694. \ub9c8\uc9c0\ub9c9\uc73c\ub85c \uac19\uc74c \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uba74 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"ejercicios-de-mcm-resueltos-paso-a-paso\" class=\"wp-block-heading\"> <span id=\"Ejercicios_de_mcm_resueltos_paso_a_paso\">LCM \uc5f0\uc2b5\uc744 \ub2e8\uacc4\ubcc4\ub85c \ud574\uacb0<\/span><\/h2>\n<p> \ub2e4\uc74c\uc73c\ub85c, <strong>\ub2e8\uacc4\ubcc4\ub85c \ud574\uacb0\ub418\ub294 \ucd5c\uc18c \uacf5\ubc30\uc218\uc758 \uc138 \uac00\uc9c0 \uc608\ub97c<\/strong> \ubcf4\uc5ec \ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4. \uc774\ub807\uac8c \ud558\uba74 \uc774\ub7ec\ud55c \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uace0 \uc774 \uae30\uc0ac\uc5d0\uc11c \uc124\uba85\ud55c \ub0b4\uc6a9\uc744 \uc57d\uac04 \uc5f0\uc2b5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub860\uc744 \ud604\uc2e4\uc5d0 \uc801\uc6a9\ud558\ub294 \uac83\uc774 \ud544\uc694\ud558\uae30 \ub54c\ubb38\uc5d0 \uac1c\ub150\uc744 \ub0b4\uba74\ud654\ud558\ub824\uba74 \uc5f0\uc2b5\ubb38\uc81c\ub97c \ud480\uc5b4\ubcf4\ub294 \uac83\uc774 \uc911\uc694\ud569\ub2c8\ub2e4. \uc989, \ub2e4\uc74c\uacfc \uac19\uc740 \uc5f0\uc2b5\uc744 \ud1b5\ud574 \uc5f0\uc2b5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3 id=\"calcular-el-mcm-de-4-y-6\" class=\"wp-block-heading\"> 4\uc640 6\uc758 lcm\uc744 \uacc4\uc0b0\ud569\ub2c8\ub2e4. <\/h3>\n<div class=\"wp-block-columns is-layout-flex wp-container-86\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> <strong>4\uc758 \ubc30\uc218:<\/strong> 4, 8, <span class=\"has-inline-color has-vivid-green-cyan-color\">12<\/span> , 16, 20, <span class=\"has-inline-color has-vivid-red-color\">24<\/span> , 28, 32, <span class=\"has-inline-color has-vivid-red-color\">36<\/span> ...<\/p>\n<p> <strong>6\uc758 \ubc30\uc218:<\/strong> 6, <span class=\"has-inline-color has-vivid-green-cyan-color\">12<\/span> , 18, <span class=\"has-inline-color has-vivid-red-color\">24<\/span> , 30, <span class=\"has-inline-color has-vivid-red-color\">36<\/span> , 42, 48...<\/p>\n<\/div>\n<div class=\"wp-block-column is-layout-flow\">\n<p> \uc6b0\ub9ac\ub294 \ubc29\ubc95 1(\ubc30\uc218 \ubaa9\ub85d)\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc774 \uc5f0\uc2b5 \ubb38\uc81c\ub97c \ud574\uacb0\ud560 \uac83\uc785\ub2c8\ub2e4. \uc2dc\uc791\ud558\ub824\uba74 \ub450 \ubaa9\ub85d\uc758 \uacf5\ud1b5\uc810\uc774 \ubb34\uc5c7\uc778\uc9c0 \uc2dd\ubcc4\ud574\uc57c \ud558\uba70 \ub354 \uc791\uc740 \ubaa9\ub85d\uc744 \uc120\ud0dd\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c 4\uc640 6\uc758 \ucd5c\uc18c\uacf5\ubc30\uc218\ub294 <span class=\"has-inline-color has-vivid-green-cyan-color\">12<\/span> \uc785\ub2c8\ub2e4.<\/p>\n<\/div>\n<\/div>\n<h3 id=\"calcular-el-mcm-de-6-y-9\" class=\"wp-block-heading\"> 6\uacfc 9\uc758 lcm\uc744 \uacc4\uc0b0\ud569\ub2c8\ub2e4. <\/h3>\n<div class=\"wp-block-columns is-layout-flex wp-container-89\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> <strong>6\uc758 \ubc30\uc218:<\/strong> 6, 12, <span class=\"has-inline-color has-vivid-green-cyan-color\">18<\/span> , 24, 30, <span class=\"has-inline-color has-vivid-red-color\">36<\/span> , 42, 48...<\/p>\n<p> <strong>9\uc758 \ubc30\uc218:<\/strong> 9, <span class=\"has-inline-color has-vivid-green-cyan-color\">18<\/span> , 27, <span class=\"has-inline-color has-vivid-red-color\">36<\/span> , 45, 54, 63, 72...<\/p>\n<\/div>\n<div class=\"wp-block-column is-layout-flow\">\n<p> \uc774 \ub450 \ubc88\uc9f8 \uc5f0\uc2b5\ubb38\uc81c\ub294 \uc774\uc804 \uc5f0\uc2b5\ubb38\uc81c\uc640 \ub3d9\uc77c\ud55c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \ud480\uc5b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uc2dc\uc791\ud558\ub824\uba74 \ub450 \ubaa9\ub85d \uc911 \uac00\uc7a5 \uc77c\ubc18\uc801\uc778 \uac83\uc744 \uc2dd\ubcc4\ud574\uc57c \ud558\uba70 \uc791\uc740 \ubaa9\ub85d\uc744 \uc120\ud0dd\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c 6\uacfc 9\uc758 \ucd5c\uc18c\uacf5\ubc30\uc218\ub294 <span class=\"has-inline-color has-vivid-green-cyan-color\">18<\/span> \uc785\ub2c8\ub2e4.<\/p>\n<\/div>\n<\/div>\n<h3 id=\"calcular-el-mcm-de-30-y-40\" class=\"wp-block-heading\"> 30\uacfc 40\uc758 lcm\uc744 \uacc4\uc0b0\ud569\ub2c8\ub2e4. <\/h3>\n<div class=\"wp-block-columns is-layout-flex wp-container-92\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> 30\uc758 \uc18c\uc778\uc218\ubd84\ud574: 2 x <span class=\"has-inline-color has-vivid-red-color\">3<\/span> x <span class=\"has-inline-color has-vivid-green-cyan-color\">5<\/span><\/p>\n<p> 40\uc758 \uc18c\uc778\uc218\ubd84\ud574: <span class=\"has-inline-color has-vivid-cyan-blue-color\">2\u00b3<\/span> x <span class=\"has-inline-color has-vivid-green-cyan-color\">5<\/span><\/p>\n<\/div>\n<div class=\"wp-block-column is-layout-flow\">\n<p> \uc774 \ub9c8\uc9c0\ub9c9 \ubb38\uc81c\ub294 \uacc4\uc2b9\ubd84\ud574\ubc95\uc73c\ub85c \ud480\uc5b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. \uadf8\ub7ec\ubbc0\ub85c \uba3c\uc800 \ub450 \uc22b\uc790\ub97c \uc18c\uc778\uc218\ub85c \ud45c\ud604\ud574\uc57c \ud558\uba70, \uac00\uc7a5 \ud070 \uc9c0\uc218\ub85c \uc62c\ub77c\uac04 \ucee4\uba3c\uacfc \ube44\ucee4\uba3c\uc744 \uc120\ud0dd\ud558\uac8c \ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c 30\uacfc 40\uc758 lcm\uc740 <span class=\"has-inline-color has-vivid-cyan-blue-color\">2\u00b3<\/span> x <span class=\"has-inline-color has-vivid-red-color\">3<\/span> x <span class=\"has-inline-color has-vivid-green-cyan-color\">5<\/span> = 120\uc785\ub2c8\ub2e4.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>\ub450 \uac1c \uc774\uc0c1\uc758 \uc22b\uc790\uc758 \ucd5c\uc18c \uacf5\ubc30\uc218(LCM) \ub294 \uc774\ub4e4 \uc22b\uc790\uc758 \uacf5\ud1b5\ub41c \ucd5c\uc18c(0\uc774 \uc544\ub2cc) \ubc30\uc218\uc785\ub2c8\ub2e4. \uc720\uc0ac\ud55c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacc4\uc0b0\ub418\uc9c0\ub9cc \uc774\ub294 \ucd5c\ub300 \uacf5\uc57d\uc218 \uc758 \uc5ed\uc5f0\uc0b0\uc785\ub2c8\ub2e4. LCM\uc744 \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6b0\uace0 \uc2f6\ub2e4\uba74 \uacc4\uc18d\ud574\uc11c \uc77d\uc5b4 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. \uc774 \ubb38\uc11c\uc5d0\uc11c\ub294 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \ucc3e\ub294 \ubaa8\ub4e0 \uc808\ucc28(\uac00\uc7a5 \ub2e8\uc21c\ud55c \uac83\ubd80\ud130 \uac00\uc7a5 \ubcf5\uc7a1\ud55c \uac83\uae4c\uc9c0)\ub97c \uc124\uba85\ud560 \uac83\uc774\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. lcm \uacc4\uc0b0\uae30 lcm\uc744 \uc5bb\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"> <span class=\"screen-reader-text\">\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0<\/span> \ub354 \ubcf4\uae30 &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"","footnotes":""},"categories":[23],"tags":[],"class_list":["post-105","post","type-post","status-publish","format-standard","hentry","category-23"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 - \uc218\ud559<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mathority.org\/ko\/\ucd5c\uc18c-\uacf5\ubc30\uc218\ub97c-\uacc4\uc0b0\ud558\ub2e4\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 - \uc218\ud559\" \/>\n<meta property=\"og:description\" content=\"\ub450 \uac1c \uc774\uc0c1\uc758 \uc22b\uc790\uc758 \ucd5c\uc18c \uacf5\ubc30\uc218(LCM) \ub294 \uc774\ub4e4 \uc22b\uc790\uc758 \uacf5\ud1b5\ub41c \ucd5c\uc18c(0\uc774 \uc544\ub2cc) \ubc30\uc218\uc785\ub2c8\ub2e4. \uc720\uc0ac\ud55c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacc4\uc0b0\ub418\uc9c0\ub9cc \uc774\ub294 \ucd5c\ub300 \uacf5\uc57d\uc218 \uc758 \uc5ed\uc5f0\uc0b0\uc785\ub2c8\ub2e4. LCM\uc744 \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6b0\uace0 \uc2f6\ub2e4\uba74 \uacc4\uc18d\ud574\uc11c \uc77d\uc5b4 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. \uc774 \ubb38\uc11c\uc5d0\uc11c\ub294 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \ucc3e\ub294 \ubaa8\ub4e0 \uc808\ucc28(\uac00\uc7a5 \ub2e8\uc21c\ud55c \uac83\ubd80\ud130 \uac00\uc7a5 \ubcf5\uc7a1\ud55c \uac83\uae4c\uc9c0)\ub97c \uc124\uba85\ud560 \uac83\uc774\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. lcm \uacc4\uc0b0\uae30 lcm\uc744 \uc5bb\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 &hellip; \ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 \ub354 \ubcf4\uae30 &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mathority.org\/ko\/\ucd5c\uc18c-\uacf5\ubc30\uc218\ub97c-\uacc4\uc0b0\ud558\ub2e4\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-17T04:42:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mathority.org\/wp-content\/uploads\/2023\/07\/formule-lcm.webp\" \/>\n<meta name=\"author\" content=\"Mathority \ud300\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mathority \ud300\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"},\"author\":{\"name\":\"Mathority \ud300\",\"@id\":\"https:\/\/mathority.org\/ko\/#\/schema\/person\/b7f677c20b58bb738a8602832db8c1c7\"},\"headline\":\"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0\",\"datePublished\":\"2023-07-17T04:42:26+00:00\",\"dateModified\":\"2023-07-17T04:42:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"},\"wordCount\":50,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/mathority.org\/ko\/#organization\"},\"articleSection\":[\"\uc628\ub77c\uc778 \uacc4\uc0b0\uae30\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\",\"url\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\",\"name\":\"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 - \uc218\ud559\",\"isPartOf\":{\"@id\":\"https:\/\/mathority.org\/ko\/#website\"},\"datePublished\":\"2023-07-17T04:42:26+00:00\",\"dateModified\":\"2023-07-17T04:42:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mathority.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mathority.org\/ko\/#website\",\"url\":\"https:\/\/mathority.org\/ko\/\",\"name\":\"Mathority\",\"description\":\"\ud638\uae30\uc2ec\uacfc \uacc4\uc0b0\uc774 \ub9cc\ub098\ub294 \uacf3!\",\"publisher\":{\"@id\":\"https:\/\/mathority.org\/ko\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mathority.org\/ko\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/mathority.org\/ko\/#organization\",\"name\":\"Mathority\",\"url\":\"https:\/\/mathority.org\/ko\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/mathority.org\/ko\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/mathority.org\/ko\/wp-content\/uploads\/2023\/10\/mathority-logo.png\",\"contentUrl\":\"https:\/\/mathority.org\/ko\/wp-content\/uploads\/2023\/10\/mathority-logo.png\",\"width\":703,\"height\":151,\"caption\":\"Mathority\"},\"image\":{\"@id\":\"https:\/\/mathority.org\/ko\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/mathority.org\/ko\/#\/schema\/person\/b7f677c20b58bb738a8602832db8c1c7\",\"name\":\"Mathority \ud300\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/mathority.org\/ko\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dd3f98feaeb54f342e72193f2059ae90dc3178f59adb7c82b33fc7d71c6ee19d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dd3f98feaeb54f342e72193f2059ae90dc3178f59adb7c82b33fc7d71c6ee19d?s=96&d=mm&r=g\",\"caption\":\"Mathority \ud300\"},\"sameAs\":[\"http:\/\/mathority.org\/ko\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 - \uc218\ud559","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mathority.org\/ko\/\ucd5c\uc18c-\uacf5\ubc30\uc218\ub97c-\uacc4\uc0b0\ud558\ub2e4\/","og_locale":"ko_KR","og_type":"article","og_title":"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 - \uc218\ud559","og_description":"\ub450 \uac1c \uc774\uc0c1\uc758 \uc22b\uc790\uc758 \ucd5c\uc18c \uacf5\ubc30\uc218(LCM) \ub294 \uc774\ub4e4 \uc22b\uc790\uc758 \uacf5\ud1b5\ub41c \ucd5c\uc18c(0\uc774 \uc544\ub2cc) \ubc30\uc218\uc785\ub2c8\ub2e4. \uc720\uc0ac\ud55c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacc4\uc0b0\ub418\uc9c0\ub9cc \uc774\ub294 \ucd5c\ub300 \uacf5\uc57d\uc218 \uc758 \uc5ed\uc5f0\uc0b0\uc785\ub2c8\ub2e4. LCM\uc744 \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \ubc30\uc6b0\uace0 \uc2f6\ub2e4\uba74 \uacc4\uc18d\ud574\uc11c \uc77d\uc5b4 \ubcf4\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. \uc774 \ubb38\uc11c\uc5d0\uc11c\ub294 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \uc791\uc740 \uacf5\ubc30\uc218\ub97c \ucc3e\ub294 \ubaa8\ub4e0 \uc808\ucc28(\uac00\uc7a5 \ub2e8\uc21c\ud55c \uac83\ubd80\ud130 \uac00\uc7a5 \ubcf5\uc7a1\ud55c \uac83\uae4c\uc9c0)\ub97c \uc124\uba85\ud560 \uac83\uc774\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. lcm \uacc4\uc0b0\uae30 lcm\uc744 \uc5bb\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 &hellip; \ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 \ub354 \ubcf4\uae30 &raquo;","og_url":"https:\/\/mathority.org\/ko\/\ucd5c\uc18c-\uacf5\ubc30\uc218\ub97c-\uacc4\uc0b0\ud558\ub2e4\/","article_published_time":"2023-07-17T04:42:26+00:00","og_image":[{"url":"https:\/\/mathority.org\/wp-content\/uploads\/2023\/07\/formule-lcm.webp"}],"author":"Mathority \ud300","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mathority \ud300"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#article","isPartOf":{"@id":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"},"author":{"name":"Mathority \ud300","@id":"https:\/\/mathority.org\/ko\/#\/schema\/person\/b7f677c20b58bb738a8602832db8c1c7"},"headline":"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0","datePublished":"2023-07-17T04:42:26+00:00","dateModified":"2023-07-17T04:42:26+00:00","mainEntityOfPage":{"@id":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"},"wordCount":50,"commentCount":0,"publisher":{"@id":"https:\/\/mathority.org\/ko\/#organization"},"articleSection":["\uc628\ub77c\uc778 \uacc4\uc0b0\uae30"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/","url":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/","name":"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0 - \uc218\ud559","isPartOf":{"@id":"https:\/\/mathority.org\/ko\/#website"},"datePublished":"2023-07-17T04:42:26+00:00","dateModified":"2023-07-17T04:42:26+00:00","breadcrumb":{"@id":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mathority.org\/ko\/%ec%b5%9c%ec%86%8c-%ea%b3%b5%eb%b0%b0%ec%88%98%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mathority.org\/ko\/"},{"@type":"ListItem","position":2,"name":"\ucd5c\uc18c\uacf5\ubc30\uc218(lcm) \uacc4\uc0b0"}]},{"@type":"WebSite","@id":"https:\/\/mathority.org\/ko\/#website","url":"https:\/\/mathority.org\/ko\/","name":"Mathority","description":"\ud638\uae30\uc2ec\uacfc \uacc4\uc0b0\uc774 \ub9cc\ub098\ub294 \uacf3!","publisher":{"@id":"https:\/\/mathority.org\/ko\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mathority.org\/ko\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/mathority.org\/ko\/#organization","name":"Mathority","url":"https:\/\/mathority.org\/ko\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/mathority.org\/ko\/#\/schema\/logo\/image\/","url":"https:\/\/mathority.org\/ko\/wp-content\/uploads\/2023\/10\/mathority-logo.png","contentUrl":"https:\/\/mathority.org\/ko\/wp-content\/uploads\/2023\/10\/mathority-logo.png","width":703,"height":151,"caption":"Mathority"},"image":{"@id":"https:\/\/mathority.org\/ko\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/mathority.org\/ko\/#\/schema\/person\/b7f677c20b58bb738a8602832db8c1c7","name":"Mathority \ud300","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/mathority.org\/ko\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dd3f98feaeb54f342e72193f2059ae90dc3178f59adb7c82b33fc7d71c6ee19d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dd3f98feaeb54f342e72193f2059ae90dc3178f59adb7c82b33fc7d71c6ee19d?s=96&d=mm&r=g","caption":"Mathority \ud300"},"sameAs":["http:\/\/mathority.org\/ko"]}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/posts\/105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/comments?post=105"}],"version-history":[{"count":0,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/posts\/105\/revisions"}],"wp:attachment":[{"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/media?parent=105"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/categories?post=105"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/tags?post=105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}