{"id":103,"date":"2023-07-17T05:51:19","date_gmt":"2023-07-17T05:51:19","guid":{"rendered":"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"},"modified":"2023-07-17T05:51:19","modified_gmt":"2023-07-17T05:51:19","slug":"gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4","status":"publish","type":"post","link":"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/","title":{"rendered":"\ucd5c\ub300 \uacf5\uc57d\uc218(gcd) \uacc4\uc0b0"},"content":{"rendered":"<p><strong>\ucd5c\ub300\uacf5\uc57d\uc218 \ub610\ub294 GCD\ub294<\/strong> a\uc640 b \uc0ac\uc774\uc5d0\uc11c \ub098\ub20c \uc218 \uc788\ub294 \uac00\uc7a5 \ud070 \uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\ub294 \uc218\ud559\uc801 \uac1c\ub150\uc785\ub2c8\ub2e4. \uc774\ub294 \ub450 \uc22b\uc790\uc758 GCD\ub97c \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uc774\uc9c0\ub9cc \uc2e4\uc81c\ub85c\ub294 \ub354 \ud070 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \ud070 \uc57d\uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc544\ub798\uc5d0 \ubcf4\uc5ec\ub4dc\ub9ac\ub294 GCD \uacc4\uc0b0\uae30\uc5d0\uc11c\ub294 \uc6d0\ud558\ub294 \uc22b\uc790 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc4f8 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"calculadora-de-mcd\" class=\"wp-block-heading\"> <span id=\"Calculadora_de_MCD\">GCD \uacc4\uc0b0\uae30<\/span><\/h2>\n<p><script language=\"javascript\"> <\/p>\n<p>function MCD(){\n  if (arguments.length<2) \n      return false;\n  if (arguments.length==2)\n      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 calcularMCD() {\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('MCD').innerText = 'El MCD es: ' +  MCD.apply(window, numeros); \n  } \n \n<\/script><\/p>\n<form id=\"formMCD\" style=\"padding-top: 1rem;\" name=\"formMCD\"><label>\ucd5c\ub300\uacf5\uc57d\uc218 \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=\"32,16,64\"> <button type=\"button\">GCD \uacc4\uc0b0<\/button> <\/p>\n<div id=\"MCD\"><\/div>\n<\/form>\n<h2 id=\"pasos-para-hallar-el-maximo-comun-divisor\" class=\"wp-block-heading\"> <span id=\"Pasos_para_hallar_el_maximo_comun_divisor\">\ucd5c\ub300 \uacf5\uc57d\uc218\ub97c \ucc3e\ub294 \ub2e8\uacc4<\/span><\/h2>\n<p> <strong>\ucd5c\ub300 \uacf5\uc57d\uc218\ub97c \ucc3e\uc73c<\/strong> \ub824\uba74 \uae30\ubcf8\uc801\uc73c\ub85c <a href=\"https:\/\/mathority.org\/ko\/\u110e\u116c\u1109\u1169-\u1100\u1169\u11bc\u1107\u1162\u1109\u116e\u1105\u1173\u11af-\u1100\u1168\u1109\u1161\u11ab\u1112\u1161\u1103\u1161\/\" target=\"_blank\" rel=\"noreferrer noopener\">\ucd5c\uc18c \uacf5\ubc30\uc218\ub97c \uacc4\uc0b0\ud558\ub294<\/a> \ub370 \uc0ac\uc6a9\ud55c \uac83\uacfc \ub9e4\uc6b0 \uc720\uc0ac\ud55c \uc77c\ub828\uc758 \ub2e8\uacc4\ub97c \ub530\ub77c\uc57c \ud569\ub2c8\ub2e4. \uc544\ub798\uc5d0\uc11c \uc808\ucc28\ub97c \uc124\uba85\ud558\uaca0\uc9c0\ub9cc \uba3c\uc800 \uc774 \uacc4\uc0b0\uacfc \uad00\ub828\ub41c \uc694\uc18c\ub97c \uc815\uc758\ud574\uc57c \ud569\ub2c8\ub2e4. \uac00\uc7a5 \uc911\uc694\ud55c \uac83\uc740 GCD\uac00 \uacc4\uc0b0\ub418\ub294 \ub450 \uac1c \uc774\uc0c1\uc758 \uc218\uce58 \uac12\uc785\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \ub610\ud55c \uc774 \ubaa8\ub4e0 \uc22b\uc790\uc758 \uc57d\uc218\ub97c \uc54c\uc544\uc57c \ud569\ub2c8\ub2e4. \uadf8 \uc911 \ud558\ub098\uac00 \uc6b0\ub9ac\uac00 \ucc3e\uace0 \uc788\ub294 \uacb0\uacfc\uac00 \ub418\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. \uadf8\ub9ac\uace0 \ub9c8\uc9c0\ub9c9\uc73c\ub85c <strong>\uacf5\uc57d\uc218\uac00<\/strong> \uc788\uc2b5\ub2c8\ub2e4. \uc774\uac83\uc774 \uc6b0\ub9ac\uac00 \ucc3e\uace0 \uc788\ub294 \uac12\uc774\uba70, \uc989\uc2dc \uacc4\uc0b0\ud558\ub294 \ubc29\ubc95\uc744 \uac00\ub974\uccd0 \ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h3 id=\"metodo-de-la-lista-de-divisores\" class=\"wp-block-heading\"> \uad6c\ubd84\uc120 \ubaa9\ub85d \ubc29\ubc95<\/h3>\n<ul>\n<li> <strong>\ubaa8\ub4e0 \uc57d\uc218 \ubaa9\ub85d \ub9cc\ub4e4\uae30:<\/strong> \uac01 \uc22b\uc790\uc758 \ubaa8\ub4e0 \uc57d\uc218 \ubaa9\ub85d\uc744 \uc791\uc131\ud558\ub294 \uac83\ubd80\ud130 \uc2dc\uc791\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774\uc0c1\uc801\uc73c\ub85c\ub294 \uc81c\uc218\ub97c \ub354 \uc27d\uac8c \uc2dd\ubcc4\ud558\uace0 \ube44\uad50\ud560 \uc218 \uc788\ub3c4\ub85d \uc218\ud3c9\uc73c\ub85c \uc11c\ub85c \uacb9\uccd0\uc11c \uadf8\ub9ac\ub294 \uac83\uc785\ub2c8\ub2e4. <strong>\ubaa8\ub4e0 \uc81c\uc218<\/strong> \uc791\uc131\uc744 \ub9c8\uce58\uba74 \ub2e4\uc74c \ud56d\ubaa9\uc73c\ub85c \ub118\uc5b4\uac08 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\ubaa8\ub4e0 \uacf5\uc57d\uc218\ub97c \uc2dd\ubcc4\ud558\uc2ed\uc2dc\uc624.<\/strong> \uc6b0\ub9ac\ub294 \uacf5\uc57d\uc218(\uc6b0\ub9ac\uac00 \uc791\uc131\ud55c \ubaa8\ub4e0 \ubaa9\ub85d\uc5d0\uc11c \ubc18\ubcf5\ub418\ub294 \uacf5\uc57d\uc218)\ub97c \uc2dd\ubcc4\ud574\uc57c \ud569\ub2c8\ub2e4. \ub450 \uac1c\uc758 \uc22b\uc790\ub9cc \uc791\uc5c5\ud558\ub294 \uacbd\uc6b0 \ub450 \uac1c\uc758 \ubaa9\ub85d\ub9cc \ubcf4\uba74 \ub429\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \ubaa9\ub85d\uc774 \ub354 \ub9ce\uc73c\uba74 \ub354 \ub9ce\uc740 \uad00\uc2ec\uc744 \uac16\uace0 \ub354 \ub9ce\uc740 \uc22b\uc790\ub97c \uc0b4\ud3b4\ubd10\uc57c \ud569\ub2c8\ub2e4.<\/li>\n<li> <strong>\uc81c\uc218 \uc911\uc5d0\uc11c \uac00\uc7a5 \ud070 \uc218 \ucc3e\uae30:<\/strong> \ubaa8\ub4e0 \uacf5\uc57d\uc218\ub97c \uc5b4\ub5a4 \uc2dd\uc73c\ub85c\ub4e0 \ud45c\uc2dc\ud558\uba74 \uac00\uc7a5 \ud070 \uc57d\uc218\ub9cc \ucc3e\uc73c\uba74 \ub429\ub2c8\ub2e4. \uc774\ub294 \uacb0\uad6d \uac00\uc7a5 \uc624\ub978\ucabd\uc5d0 \uc788\ub294 \uc22b\uc790 \uac12\uc774 \ub429\ub2c8\ub2e4. \uc624\ub978\ucabd\uc73c\ub85c \uac08\uc218\ub85d \ub354 \ud070 \uac12\uc744 \uc758\ubbf8\ud558\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4.<\/li>\n<\/ul>\n<p> \ub9e4\uc6b0 \ud070 \uc22b\uc790\ub85c \uc791\uc5c5\ud558\ub294 \uacbd\uc6b0 \ubaa8\ub4e0 \uc81c\uc218\ub97c \uc791\uc131\ud574\uc57c \ud558\uae30 \ub54c\ubb38\uc5d0 \uc18d\ub3c4\uac00 \uc0c1\ub2f9\ud788 \ub290\ub824\uc9c8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c \ub2e4\uc74c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. \ub610\ub294 \uc791\uc5c5 \uc911\uc778 \uc22b\uc790 \uc911 \ud558\ub098\uac00 \ub098\uba38\uc9c0\ub97c \ub098\ub204\ub294\uc9c0 \ud655\uc778\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4 <strong>16, 32, 64\uc758 GCD\ub294<\/strong> 16\ubcf4\ub2e4 \ud074 \uc218 \uc5c6\uc73c\ubbc0\ub85c 16\uc774 \ub2e4\ub978 \uac12\uc73c\ub85c \ub098\ub204\uc5b4\uc9c0\ub294\uc9c0 \ud655\uc778\ud558\uba74 \ub429\ub2c8\ub2e4.<\/p>\n<h3 id=\"metodo-de-la-descomposicion-en-numeros-primos\" class=\"wp-block-heading\"> \uc18c\uc218 \ubd84\ud574 \ubc29\ubc95<\/h3>\n<ul>\n<li> <strong>\uac01 \uc22b\uc790\ub97c \uc18c\uc778\uc218\ub85c \ubd84\ud574:<\/strong> \uac00\uc7a5 \uba3c\uc800 \ud560 \uc77c\uc740 <a href=\"https:\/\/edu.gcfglobal.org\/es\/divisores-y-multiplos\/descomposicion-en-factores-primos\/1\/\" target=\"_blank\" rel=\"noreferrer noopener\">\ubaa8\ub4e0 \uc22b\uc790\ub97c \uacc4\uc2b9 \ubd84\ud574\ud558\ub294 \uac83<\/a> \uc785\ub2c8\ub2e4. \uc774\ub7f0 \uc2dd\uc73c\ub85c \uc22b\uc790\ub97c \ub354 \uc791\uc740 \uc22b\uc790\ub85c \ubd84\ud574\ud568\uc73c\ub85c\uc368 \uc6b0\ub9ac\uac00 \uacc4\uc0b0\ud558\ub294 \ubaa8\ub4e0 \uac12 \uc0ac\uc774\uc5d0 \uc5b4\ub5a4 \uc218\uce58 \uad00\uacc4\uac00 \uc874\uc7ac\ud558\ub294\uc9c0 \ud655\uc778\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\ubaa8\ub4e0 \uc694\uc18c\ub97c \ud558\ub098\uc758 \ud45c\ud604\uc2dd\uc73c\ub85c \ud1b5\ud569:<\/strong> \ubaa8\ub4e0 \uc22b\uc790\ub97c \ubd84\ub958\ud55c \ud6c4\uc5d0\ub294 \uc694\uc18c\ub97c \uac01 \uc22b\uc790\uc5d0 \ub300\ud55c \ub2e8\uc77c \uc218\ud559\uc801 \ud45c\ud604\uc2dd\uc73c\ub85c \ud45c\ud604\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774\ub97c \ud1b5\ud574 \uc6b0\ub9ac\ub294 \ubaa8\ub4e0 \uc694\uc18c\ub97c \uacb0\ud569\ud558\uace0 \ubaa8\ub450 \uacf1\ud560 \uac83\uc774\uba70, \ubc18\ubcf5\ud558\uba74 \uc774\ub97c \uac70\ub4ed\uc81c\uacf1\uc73c\ub85c \ud45c\ud604\ud560 \uac83\uc785\ub2c8\ub2e4.<\/li>\n<li> <strong>\uc9c0\uc218\uac00 \uac00\uc7a5 \uc791\uc740 \uacf5\uc57d\uc218\ub97c \uc120\ud0dd\ud558\uc138\uc694.<\/strong> \ub9c8\uc9c0\ub9c9\uc73c\ub85c \uc774\uc804\uc5d0 \uc218\uc9d1\ud55c \uc778\uc218 \uc911\uc5d0\uc11c \uac00\uc7a5 \ud070 \uacf5\uc57d\uc218\ub97c \ucc3e\uc544\uc57c \ud569\ub2c8\ub2e4. \uc774\ub807\uac8c \ud558\ub824\uba74 \uacf5\ud1b5 \uc22b\uc790\uc640 \ucd5c\uc18c \uc9c0\uc218\ub97c \uc120\ud0dd\ud569\ub2c8\ub2e4. \ub0a8\uc740 \uac83\uc740 \uacf1\uc148\uacfc \uac70\ub4ed\uc81c\uacf1\uc758 <a href=\"https:\/\/mathority.org\/ko\/\u1100\u1167\u11af\u1112\u1161\u11b8-\u110c\u1161\u11a8\u110c\u1165\u11ab\/\" target=\"_blank\" rel=\"noreferrer noopener\">\uacb0\ud569\ub41c \uc5f0\uc0b0\uc744<\/a> \ud478\ub294 \uac83\ubfd0\uc785\ub2c8\ub2e4.<\/li>\n<\/ul>\n<p> \uc774 \uc808\ucc28\uac00 \uba85\ud655\ud558\uc9c0 \uc54a\uc740 \uacbd\uc6b0 \uc774\uc804 \ube44\ub514\uc624\ub098 \uc774 \uae30\uc0ac \ub9c8\uc9c0\ub9c9 \ubd80\ubd84\uc5d0 \uc788\ub294 \uc608\uc81c\ub97c \uc2dc\uccad\ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"para-que-se-usa-el-maximo-comun-divisor\" class=\"wp-block-heading\"> <span id=\"Para_que_se_usa_el_maximo_comun_divisor\">\ucd5c\ub300\uacf5\uc57d\uc218\ub294 \ubb34\uc5c7\uc5d0 \uc0ac\uc6a9\ub418\ub098\uc694?<\/span><\/h2>\n<ul>\n<li> <strong>\ubd84\uc218\ub97c \uc904\uc774\uae30 \uc704\ud55c GCD:<\/strong> GCD\ub294 <a href=\"https:\/\/mathority.org\/ko\/\u1107\u116e\u11ab\u1109\u116e\u1105\u1173\u11af-\u1103\u1161\u11ab\u1109\u116e\u11ab\u1112\u116a\u1112\u1161\u1103\u1161\/\" target=\"_blank\" rel=\"noreferrer noopener\">\ubd84\uc218\ub97c \ub2e8\uc21c\ud654\ud558\ub294<\/a> \ub370 \ub9e4\uc6b0 \uc720\uc6a9\ud558\uba70 \uc774\ub294 \uc218\ud559 \ubd84\uc57c\uc5d0\uc11c \ub9e4\uc6b0 \uc77c\ubc18\uc801\uc785\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \uc5ec\uae30\uc5d0\ub294 \ubd84\uc790\uc640 \ubd84\ubaa8\uc758 \ucd5c\ub300 \uacf5\uc57d\uc218\ub97c \ucc3e\uc740 \ub2e4\uc74c \ub458\uc744 \ud574\ub2f9 \uc22b\uc790\ub85c \ub098\ub204\ub294 \uc791\uc5c5\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4. \uc774\ub7f0 \uc2dd\uc73c\ub85c \uc6b0\ub9ac\ub294 \ub3d9\uc77c\ud558\uace0 \uac04\ub2e8\ud55c \ubd84\uc218\ub85c \ub05d\ub0a9\ub2c8\ub2e4.<\/li>\n<li> <strong>\ubcf5\uc7a1\ud55c \uacc4\uc0b0 \ub2e8\uc21c\ud654:<\/strong> \ub9ce\uc740 \uacbd\uc6b0 \ub9e4\uc6b0 \ubcf5\uc7a1\ud55c \uc218\ud559 \ud45c\ud604\uc2dd\uc744 \ub2e8\uc21c\ud654\ud558\uae30 \uc704\ud574 \ub450 \uc22b\uc790\uc758 LCD\ub97c \uacc4\uc0b0\ud558\ub294 \uac83\uc774 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ub530\ub77c\uc11c \uacc4\uc18d\ud574\uc11c \uacc4\uc0b0\uc744 \ud480 \uc218 \uc788\uc9c0\ub9cc \ub354 \uac04\ub2e8\ud55c \ubc29\ubc95\uc73c\ub85c \uadf8\ub807\uac8c \ud070 \uc22b\uc790\ub85c \uacc4\uc0b0\uc744 \uc218\ud589\ud560 \ud544\uc694\uac00 \uc5c6\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2 id=\"mcd-en-la-calculadora-cientifica\" class=\"wp-block-heading\"> <span id=\"MCD_en_la_calculadora_cientifica\">\uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\uc758 gcf<\/span><\/h2>\n<p> \uacc4\uc0b0\uae30\uc758 \ucd5c\ub300\uacf5\uc57d\uc218 \ud568\uc218\ub97c \uc0ac\uc6a9\ud558\uba74 <strong>\ub450 \uc815\uc218\uc758 gcf\ub97c<\/strong> \uacb0\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener\">Casio \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30<\/a> (\ud559\uc0dd\ub4e4\uc5d0\uac8c \uac00\uc7a5 \uad8c\uc7a5\ub418\ub294 \ubaa8\ub378)\uc5d0\uc11c \uc774 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uac04\ub2e8\ud788 \ub2e4\uc74c \ud0a4 \uc870\ud569 ALPHA + MCD\ub97c \ub204\ub974\uaca0\uc2b5\ub2c8\ub2e4. \uadf8\ub7f0 \ub2e4\uc74c \uccab \ubc88\uc9f8 \uc22b\uc790\ub97c \uc785\ub825\ud55c \ub2e4\uc74c SHIFT + \",\"(\uc27c\ud45c \uc785\ub825)\ub97c \ub204\ub974\uace0 \ub9c8\uc9c0\ub9c9\uc73c\ub85c \ub450 \ubc88\uc9f8 \uac12\uc744 \uc785\ub825\ud569\ub2c8\ub2e4. \uad04\ud638\ub97c \ub2eb\uc740 \ud6c4 \ub4f1\ud638 \ud0a4\ub97c \ub20c\ub7ec \uacb0\uacfc\ub97c \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 id=\"ejercicios-de-mcd-resueltos-paso-a-paso\" class=\"wp-block-heading\"> <span id=\"Ejercicios_de_MCD_resueltos_paso_a_paso\">\ub2e8\uacc4\ubcc4\ub85c \ud574\uacb0\ub418\ub294 GCD \uc5f0\uc2b5<\/span><\/h2>\n<p> \ub2e4\uc74c\uc740 \uc5f0\uc2b5\ud560 \uc218 \uc788\ub294 \uc138 \uac00\uc9c0 MCD \uc5f0\uc2b5\uc785\ub2c8\ub2e4. \uc774\ub7ec\ud55c \uc608\ub97c \ud480\uc5b4\ubcf4\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. \uc774 \uae00 \uc804\uccb4\uc5d0\uc11c \uc124\uba85\ud588\ub358 \ubaa8\ub4e0 \uc218\ud559\uc801 \uac1c\ub150\uc744 \ub0b4\uba74\ud654\ud558\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. \uc989, \ub2e4\uc74c\uacfc \uac19\uc774 \uc5f0\uc2b5\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3 id=\"hallar-el-mcd-de-20-y-24\" class=\"wp-block-heading\"> 20\uacfc 24\uc758 gcf\ub97c \ucc3e\uc73c\uc138\uc694 <\/h3>\n<div class=\"wp-block-columns is-layout-flex wp-container-95\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> <strong>20\uc758 \uc57d\uc218:<\/strong> <span class=\"has-inline-color has-vivid-red-color\">1<\/span> , <span class=\"has-inline-color has-vivid-red-color\">2<\/span> , <span class=\"has-inline-color has-vivid-green-cyan-color\">4<\/span> , 5, 10, 20.<\/p>\n<p> <strong>24\uc758 \ubd84\ubc30\uae30:<\/strong> <span class=\"has-inline-color has-vivid-red-color\">1<\/span> , <span class=\"has-inline-color has-vivid-red-color\">2<\/span> , 3, <span class=\"has-inline-color has-vivid-green-cyan-color\">4<\/span> , 6, 8, 12 \ubc0f 24.<\/p>\n<\/div>\n<div class=\"wp-block-column is-layout-flow\">\n<p> \uc6b0\ub9ac\ub294 \uc81c\uc218 \ubaa9\ub85d \ubc29\ubc95\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 \ud070 \ubaa9\ub85d\uc744 \uc120\ud0dd\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c 20\uacfc 24\uc758 \ucd5c\ub300\uacf5\uc57d\uc218\ub294 <span class=\"has-inline-color has-vivid-green-cyan-color\">4<\/span> \uc785\ub2c8\ub2e4.<\/p>\n<\/div>\n<\/div>\n<h3 id=\"hallar-el-mcd-de-15-y-30\" class=\"wp-block-heading\"> 15\uc640 30\uc758 gcf\ub97c \ucc3e\uc73c\uc138\uc694 <\/h3>\n<div class=\"wp-block-columns is-layout-flex wp-container-98\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> <strong>15\uc758 \uc57d\uc218:<\/strong> <span class=\"has-inline-color has-vivid-red-color\">1<\/span> , <span class=\"has-inline-color has-vivid-red-color\">3<\/span> , <span class=\"has-inline-color has-vivid-red-color\">5<\/span> , <span class=\"has-inline-color has-vivid-green-cyan-color\">15<\/span> .<\/p>\n<p> <strong>30\uc758 \uc57d\uc218:<\/strong> <span class=\"has-inline-color has-vivid-red-color\">1<\/span> , 2, <span class=\"has-inline-color has-vivid-red-color\">3<\/span> , <span class=\"has-inline-color has-vivid-red-color\">5<\/span> , 6, 10, <span class=\"has-inline-color has-vivid-green-cyan-color\">15<\/span> , 30.<\/p>\n<\/div>\n<div class=\"wp-block-column is-layout-flow\">\n<p> \uc774\uc804 \uc5f0\uc2b5\uacfc \ub3d9\uc77c\ud55c \ubc29\ubc95\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc774 \uc5f0\uc2b5\uc744 \ud574\uacb0\ud558\uaca0\uc2b5\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 \ud070 \ubaa9\ub85d\uc744 \uc120\ud0dd\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c 15 \uc640 30 \uc758 LCD\ub294 <span class=\"has-inline-color has-vivid-green-cyan-color\">15<\/span> \uc785\ub2c8\ub2e4.<\/p>\n<\/div>\n<\/div>\n<h3 id=\"calcular-el-mcd-600-y-1000\" class=\"wp-block-heading\"> gcf 600 \ubc0f 1000 \uacc4\uc0b0 <\/h3>\n<div class=\"wp-block-columns is-layout-flex wp-container-101\">\n<div class=\"wp-block-column is-layout-flow\">\n<p> 600 = <span class=\"has-inline-color has-vivid-red-color\">2\u00b3<\/span> x 3 x <span class=\"has-inline-color has-vivid-cyan-blue-color\">5\u00b2<\/span> \uc758 \uc18c\uc778\uc218\ubd84\ud574<\/p>\n<p> 1000\uc758 \uc18c\uc778\uc218\ubd84\ud574 = <span class=\"has-inline-color has-vivid-red-color\">2\u00b3<\/span> x 5\u00b3<\/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. \ub530\ub77c\uc11c \uba3c\uc800 \ub450 \uc22b\uc790\ub97c \uc18c\uc778\uc218\ub85c \ud45c\ud604\ud574\uc57c \ud558\uba70, \uac00\uc7a5 \ub0ae\uc740 \uc9c0\uc218\ub85c \uc62c\ub77c\uac04 \ucee4\uba3c\uc988\ub97c \uc120\ud0dd\ud558\uac8c \ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c 600\uacfc 1000\uc758 \ucd5c\ub300\uacf5\uc57d\uc218\ub294 <span class=\"has-inline-color has-vivid-red-color\">2\u00b3<\/span> x <span class=\"has-inline-color has-vivid-cyan-blue-color\">5\u00b2<\/span> = 200\uc785\ub2c8\ub2e4.<\/p>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>\ucd5c\ub300\uacf5\uc57d\uc218 \ub610\ub294 GCD\ub294 a\uc640 b \uc0ac\uc774\uc5d0\uc11c \ub098\ub20c \uc218 \uc788\ub294 \uac00\uc7a5 \ud070 \uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\ub294 \uc218\ud559\uc801 \uac1c\ub150\uc785\ub2c8\ub2e4. \uc774\ub294 \ub450 \uc22b\uc790\uc758 GCD\ub97c \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uc774\uc9c0\ub9cc \uc2e4\uc81c\ub85c\ub294 \ub354 \ud070 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \ud070 \uc57d\uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc544\ub798\uc5d0 \ubcf4\uc5ec\ub4dc\ub9ac\ub294 GCD \uacc4\uc0b0\uae30\uc5d0\uc11c\ub294 \uc6d0\ud558\ub294 \uc22b\uc790 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc4f8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. GCD \uacc4\uc0b0\uae30 \ucd5c\ub300\uacf5\uc57d\uc218 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uc815\uc218\ub97c \uc27c\ud45c\ub85c &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"> <span class=\"screen-reader-text\">\ucd5c\ub300 \uacf5\uc57d\uc218(gcd) \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-103","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\ub300 \uacf5\uc57d\uc218(GCD) \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\/gcd\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\ub300 \uacf5\uc57d\uc218(GCD) \uacc4\uc0b0 - \uc218\ud559\" \/>\n<meta property=\"og:description\" content=\"\ucd5c\ub300\uacf5\uc57d\uc218 \ub610\ub294 GCD\ub294 a\uc640 b \uc0ac\uc774\uc5d0\uc11c \ub098\ub20c \uc218 \uc788\ub294 \uac00\uc7a5 \ud070 \uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\ub294 \uc218\ud559\uc801 \uac1c\ub150\uc785\ub2c8\ub2e4. \uc774\ub294 \ub450 \uc22b\uc790\uc758 GCD\ub97c \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uc774\uc9c0\ub9cc \uc2e4\uc81c\ub85c\ub294 \ub354 \ud070 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \ud070 \uc57d\uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc544\ub798\uc5d0 \ubcf4\uc5ec\ub4dc\ub9ac\ub294 GCD \uacc4\uc0b0\uae30\uc5d0\uc11c\ub294 \uc6d0\ud558\ub294 \uc22b\uc790 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc4f8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. GCD \uacc4\uc0b0\uae30 \ucd5c\ub300\uacf5\uc57d\uc218 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uc815\uc218\ub97c \uc27c\ud45c\ub85c &hellip; \ucd5c\ub300 \uacf5\uc57d\uc218(gcd) \uacc4\uc0b0 \ub354 \ubcf4\uae30 &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mathority.org\/ko\/gcd\ub97c-\uacc4\uc0b0\ud558\ub2e4\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-17T05:51:19+00:00\" \/>\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\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/mathority.org\/ko\/gcd%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\ub300 \uacf5\uc57d\uc218(gcd) \uacc4\uc0b0\",\"datePublished\":\"2023-07-17T05:51:19+00:00\",\"dateModified\":\"2023-07-17T05:51:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"},\"wordCount\":29,\"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\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\",\"url\":\"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\",\"name\":\"\ucd5c\ub300 \uacf5\uc57d\uc218(GCD) \uacc4\uc0b0 - \uc218\ud559\",\"isPartOf\":{\"@id\":\"https:\/\/mathority.org\/ko\/#website\"},\"datePublished\":\"2023-07-17T05:51:19+00:00\",\"dateModified\":\"2023-07-17T05:51:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/mathority.org\/ko\/gcd%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\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mathority.org\/ko\/gcd%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\ub300 \uacf5\uc57d\uc218(gcd) \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\ub300 \uacf5\uc57d\uc218(GCD) \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\/gcd\ub97c-\uacc4\uc0b0\ud558\ub2e4\/","og_locale":"ko_KR","og_type":"article","og_title":"\ucd5c\ub300 \uacf5\uc57d\uc218(GCD) \uacc4\uc0b0 - \uc218\ud559","og_description":"\ucd5c\ub300\uacf5\uc57d\uc218 \ub610\ub294 GCD\ub294 a\uc640 b \uc0ac\uc774\uc5d0\uc11c \ub098\ub20c \uc218 \uc788\ub294 \uac00\uc7a5 \ud070 \uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\ub294 \uc218\ud559\uc801 \uac1c\ub150\uc785\ub2c8\ub2e4. \uc774\ub294 \ub450 \uc22b\uc790\uc758 GCD\ub97c \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uc774\uc9c0\ub9cc \uc2e4\uc81c\ub85c\ub294 \ub354 \ud070 \uc22b\uc790 \uc9d1\ud569\uc758 \uac00\uc7a5 \ud070 \uc57d\uc218\ub97c \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc544\ub798\uc5d0 \ubcf4\uc5ec\ub4dc\ub9ac\ub294 GCD \uacc4\uc0b0\uae30\uc5d0\uc11c\ub294 \uc6d0\ud558\ub294 \uc22b\uc790 \uac12\uc744 \uc27c\ud45c\ub85c \uad6c\ubd84\ud558\uc5ec \uc4f8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. GCD \uacc4\uc0b0\uae30 \ucd5c\ub300\uacf5\uc57d\uc218 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uc815\uc218\ub97c \uc27c\ud45c\ub85c &hellip; \ucd5c\ub300 \uacf5\uc57d\uc218(gcd) \uacc4\uc0b0 \ub354 \ubcf4\uae30 &raquo;","og_url":"https:\/\/mathority.org\/ko\/gcd\ub97c-\uacc4\uc0b0\ud558\ub2e4\/","article_published_time":"2023-07-17T05:51:19+00:00","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\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#article","isPartOf":{"@id":"https:\/\/mathority.org\/ko\/gcd%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\ub300 \uacf5\uc57d\uc218(gcd) \uacc4\uc0b0","datePublished":"2023-07-17T05:51:19+00:00","dateModified":"2023-07-17T05:51:19+00:00","mainEntityOfPage":{"@id":"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"},"wordCount":29,"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\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/","url":"https:\/\/mathority.org\/ko\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/","name":"\ucd5c\ub300 \uacf5\uc57d\uc218(GCD) \uacc4\uc0b0 - \uc218\ud559","isPartOf":{"@id":"https:\/\/mathority.org\/ko\/#website"},"datePublished":"2023-07-17T05:51:19+00:00","dateModified":"2023-07-17T05:51:19+00:00","breadcrumb":{"@id":"https:\/\/mathority.org\/ko\/gcd%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\/gcd%eb%a5%bc-%ea%b3%84%ec%82%b0%ed%95%98%eb%8b%a4\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mathority.org\/ko\/gcd%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\ub300 \uacf5\uc57d\uc218(gcd) \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\/103","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=103"}],"version-history":[{"count":0,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/posts\/103\/revisions"}],"wp:attachment":[{"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/media?parent=103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/categories?post=103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/tags?post=103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}