{"id":80,"date":"2023-07-17T18:49:58","date_gmt":"2023-07-17T18:49:58","guid":{"rendered":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/"},"modified":"2023-07-17T18:49:58","modified_gmt":"2023-07-17T18:49:58","slug":"%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/","title":{"rendered":"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30"},"content":{"rendered":"<table class=\"calculator table\">\n<thead>\n<tr>\n<td colspan=\"7\">\n<div class=\"output form-group\"><input type=\"text\" class=\"ans form-control\" readonly=\"\" name=\"\"><\/div>\n<\/td>\n<\/tr>\n<\/thead>\n<tbody class=\"actions\">\n<tr>\n<td colspan=\"3\"><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"*(\">(<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\")\">)<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"%\">%<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"ce\">\uc774\uac83<\/button><\/td>\n<\/tr>\n<tr>\n<td> <button class=\"btn btn-op\" data-value=\"inv\">\uc778\ubcf4\uc774\uc2a4<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"sin\">\uc5c6\uc774<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"ln\">~ \uc548\uc5d0<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"7\">7<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"8\">8<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"9\">9<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"\/\">\u00b6<\/button><\/td>\n<\/tr>\n<tr>\n<td> <button class=\"btn btn-op\" data-value=\"*3.14\">\u03c0<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"cos\">\uc65c\ub0d0\ud558\uba74<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"log\">\uad6c\ud558\ub2e4<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"4\">4<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"5\">5<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"6\">6<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"*\">\u00d7<\/button><\/td>\n<\/tr>\n<tr>\n<td> <button class=\"btn btn-op\" data-value=\"e\">\uadf8\ub9ac\uace0<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"tan\">\uadf8\ub798\uc11c<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"radic\">\u221a<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"3\">\uc0bc<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"2\">2<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"1\">1<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"-\">\u2013<\/button><\/td>\n<\/tr>\n<tr>\n<td> <button class=\"btn btn-op\" data-value=\"exp\">\uacbd\ud5d8\uce58<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"x^2\">x\u00b2<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"**\">\uc5d1\uc2a4^<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\".\">.<\/button><\/td>\n<td> <button class=\"btn\" data-value=\"0\">0<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"=\">=<\/button><\/td>\n<td> <button class=\"btn btn-op\" data-value=\"+\">+<\/button><\/td>\n<\/tr>\n<style>\n.calculator{\n\tborder:2px solid #ddd;\n\twidth: 280px;\n\tbox-sizing: border-box;\n\tmargin: 40px auto 0;\n\tfont-family: verdana;\n}\n.calculator .form-control{\n\theight: 60px;\n}\n.calculator .form-group{\n\tmargin-bottom: 0;\n}\n.calculator input[type=text]{\n\tfont-size: 1.5rem;\n\tcolor:#333;\n}\n.calculator .btn {\n\tfont-size: 1rem;\n\tcolor:#333;\n\twidth: 90px;\n}\n.calculator .btn-op {\n\tbackground-color: #999999;\n}\n<\/style>\n<p><script>\nconst actions = document.querySelector('.actions');\n\tconst ans = document.querySelector('.ans');\n\tconsole.log(actions);\n\tconsole.log(ans);\n\tlet expression = '';\n\tlet a=0;\n\tactions.addEventListener('click', (e) => {\n\t\tconsole.log(e.target);\n\t\tconst value = e.target.dataset['value'];<\/p>\n<p>\t\tif(value !== undefined) {\n\t\t\t\/\/ I'm good to go.\n\t\t\tif(value == 'ce') {\n\t\t\t\texpression = '';\n\t\t\t\tans.value = 0;\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\telse if(value == 'x^2'){\n\t\t\t\texpression =square();\n\t\t\t}<\/p>\n<p>\t\t\telse if(value == 'radic'){\n\t\t\t\texpression = Math.sqrt(expression);\n\t\t\t}\n\t\t\telse if(value == 'log'){\n\t\t\t\texpression = Math.log(expression);\n\t\t\t}\n\t\t\telse if(value == 'sin'){\n\t\t\t\texpression = Math.sin(expression);\n\t\t\t}\n\t\t\telse if(value == 'cos'){\n\t\t\t\texpression = Math.cos(expression);\n\t\t\t}\n\t\t\telse if(value == 'tan'){\n\t\t\t\texpression = Math.tan(expression);\n\t\t\t}<\/p>\n<p>\t\t\telse if(value == '=') {\n\t\t\t\tconst answer = eval(expression);\n\t\t\t\texpression = answer;<\/p>\n<p>\t\t\t} else {\n\t\t\t\texpression += value;\n\t\t\t}<\/p>\n<p>\t\t\tif(expression == undefined) {\n\t\t\t\texpression = '';\n\t\t\t\tans.value = 0;\n\t\t\t} else {\n\t\t\t\tans.value = expression;\n\t\t\t}\n\t\t\t\/\/ expression += value;<\/p>\n<p>\t\t}<\/p>\n<p>\t});\n\tconst square =()=> {\n\t\t\treturn eval(expression*expression);\n\t}\n<\/script><\/tbody>\n<\/table>\n<h2 class=\"wp-block-heading\" id=\"como-usar-la-calculadora-online\"><span id=\"Como_usar_la_calculadora_online\">\uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c?<\/span><\/h2>\n<p> \uadf8 \uc5f0\uc0b0\uc740 \ub9e4\uc6b0 \uac04\ub2e8\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \ub450 \uc22b\uc790 \uc0ac\uc774\uc758 \uc5f0\uc0b0(\ub367\uc148, \uacf1\uc148, \uac70\ub4ed\uc81c\uacf1)\uc744 \ud574\uacb0\ud558\uae30 \uc704\ud574 \ubaa8\ub4e0 \ubaa8\ub378\uc5d0 \uc801\uc6a9\ub418\ub294 \uac83\uacfc <strong>\ub3d9\uc77c\ud55c \ubc29\ubc95\uc744<\/strong> \uc801\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4. \uac12\uc744 \uc4f0\uace0, \uc5f0\uc0b0\uc744 \uc120\ud0dd\ud558\uace0, \ub450 \ubc88\uc9f8 \uac12\uc744 \uc4f0\uace0 \ub9c8\uc9c0\ub9c9\uc73c\ub85c , \ub4f1\ud638 \ud0a4\ub97c \ub204\ub974\uc138\uc694. \uadf8\ub9ac\uace0 \ub2e4\ub978 \uae30\ub2a5\uc758 \uacbd\uc6b0 \uacc4\uc0b0\ud558\ub824\ub294 \uc22b\uc790 \uac12\uc744 \uc785\ub825\ud55c \ub2e4\uc74c \uae30\ub2a5(sin, log, ln&#8230;)\uc744 \ub20c\ub7ec\uc57c \ud569\ub2c8\ub2e4. \uadf8\ub7f0 \ub2e4\uc74c \uacb0\uacfc\ub97c \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ubcf4\uc2dc\ub2e4\uc2dc\ud53c \uc791\ub3d9 \uba54\ucee4\ub2c8\uc998\uc740 Google\uc758 \uc628\ub77c\uc778 \uacc4\uc0b0\uae30 \ub610\ub294 \uae30\ud0c0 \uae30\ubcf8 \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\uc640 \ub9e4\uc6b0 \uc720\uc0ac\ud569\ub2c8\ub2e4.<\/p>\n<p> <strong>\uae30\ubcf8\uc801\uc73c\ub85c \ud65c\uc131\ud654\ub418\ub294 \ubaa8\ub4dc\ub294 \ub77c\ub514\uc548<\/strong> \uc774\ubbc0\ub85c \uac01\ub3c4 \ub2e8\uc704\ub85c \uc5f0\uc0b0\uc744 \uc218\ud589\ud558\ub824\uba74 \ubcc0\ud658\uc744 \uc218\ud589\ud574\uc57c \ud569\ub2c8\ub2e4. \uadf8\ub7ec\ub098 \uc774\ub294 \uc791\uc5c5\uc774 \uac01\ub3c4\uc640 \uad00\ub828\ub41c \uacbd\uc6b0\uc5d0\ub9cc \uc601\ud5a5\uc744 \ubbf8\uce58\uba70, \uadf8\ub807\uc9c0 \uc54a\uc740 \uacbd\uc6b0\uc5d0\ub294 \uc544\ubb34\uac83\ub3c4 \uac71\uc815\ud560 \ud544\uc694\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub9c8\uc9c0\ub9c9\uc73c\ub85c <a href=\"https:\/\/mathority.org\/ko\/\u1100\u1168\u1109\u1161\u11ab\u1100\u1175\u1105\u1173\u11af-\u1109\u1161\u110b\u116d\u11bc\u1112\u1161\u1102\u1173\u11ab-\u1107\u1161\u11bc\u1107\u1165\u11b8\/\" target=\"_blank\" rel=\"noreferrer noopener\">\uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 \uc0ac\uc6a9 \ubc29\ubc95\uc744<\/a> \uc124\uba85\ud558\ub294 \uae30\uc0ac\ub97c \uc2dc\uccad\ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 class=\"wp-block-heading\" id=\"nivel-de-calculo-matematico\"> <span id=\"Nivel_de_calculo_matematico\">\uc218\ud559\uc801 \uacc4\uc0b0 \uc218\uc900<\/span><\/h2>\n<p> \uc774 \uc628\ub77c\uc778 \ubc84\uc804\uc740 \uace0\ub4f1\ud559\uad50\uc5d0\uc11c \uc0ac\uc6a9\ud558\ub294 \uc8fc\uc694 \uae30\ub2a5\uc744 \uac16\ucd94\uace0 \uc788\uc5b4 \uc644\uc804\ud55c \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\uc785\ub2c8\ub2e4. \ub610\ud55c, \uacb0\uacfc\ub294 \uc18c\uc218\uc810 16\uc790\ub9ac\uae4c\uc9c0 \uacc4\uc0b0\uc774 \uac00\ub2a5\ud558\uace0 \uadf8 \uc774\uc0c1 \uc18c\uc218\uc810 \uc774\ud558 \uc790\ub9bf\uc218\ub97c \uc694\uccad\ud558\uae30\uac00 \uc0c1\ub2f9\ud788 \uc5b4\ub835\uae30 \ub54c\ubb38\uc5d0 \ud574\uc0c1\ub3c4\uac00 \ub9e4\uc6b0 \uc88b\uc2b5\ub2c8\ub2e4. \ubb3c\ub860, \uc8fc\uc694 \uc6a9\ub3c4\ub294 \uc804\ubb38\uc801\uc778 \ubaa8\ub378\uc744 \uc0ac\uc6a9\ud560 \ud544\uc694 \uc5c6\uc774 <strong>\ube60\ub974\uace0 \ubcf5\uc7a1\ud558\uc9c0 \uc54a\uc740 \uacc4\uc0b0\uc744<\/strong> \uc218\ud589\ud558\ub294 \uac83\uc785\ub2c8\ub2e4.<\/p>\n<p> \uc6b0\ub9ac\ub294 \uc544\ub798\uc5d0\uc11c <strong>\uc628\ub77c\uc778 \ubaa8\ub378\uc758 \uc7a5\uc810\uacfc \ub2e8\uc810<\/strong> \uc5d0 \ub300\ud55c \uc124\uba85\uc744 \ucc3e\uc744 \uc218 \uc788\ub2e4\ub294 \uc810\uc744 \uc9c0\uc801\ud558\uace0 \uc2f6\uc2b5\ub2c8\ub2e4. \ub530\ub77c\uc11c \uc628\ub77c\uc778\uc5d0\uc11c \uacfc\ud559\uc801 \ud45c\uae30\ubc95\uc774 \uc788\ub294 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83\uc774 \ub354 \ub098\uc740\uc9c0, \uc544\ub2c8\uba74 \ub354 \ub9ce\uc740 \uae30\ub2a5\uc774 \uc788\uc5b4 \uacc4\uc0b0 \uc6a9\ub7c9\uc774 \ub354 \ud070 \uacc4\uc0b0\uae30\ub97c \uad6c\uc785\ud558\ub294 \uac83\uc774 \ub354 \ub098\uc740\uc9c0 \uacb0\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h3 class=\"wp-block-heading\" id=\"funciones-y-aplicacion-de-la-calculadora-online-cientifica\"> \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\uc758 \uae30\ub2a5 \ubc0f \uc751\uc6a9<\/h3>\n<p> \uc774 \ud15c\ud50c\ub9bf\uc744 \uc0ac\uc6a9\ud558\ub294 \uac83\uc740 \ub2e4\uc74c \uc601\uc5ed\uc5d0 \uc801\ud569\ud569\ub2c8\ub2e4.<\/p>\n<ul id=\"block-334423e4-b156-4275-9b0d-927fba966bb1\">\n<li> <strong>\uae30\ubcf8 \uacc4\uc0b0:<\/strong> \uc774 \uc2dc\ubbac\ub808\uc774\ud130\ub294 \uac00\uc7a5 \uc77c\ubc18\uc801\uc774\uace0 \uae30\ubcf8\uc801\uc778 \uc218\ud559 \uc5f0\uc0b0\uc744 \uac16\ucd94\uace0 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\uac70\ub4ed\uc81c\uacf1, \uadfc, \ub85c\uadf8:<\/strong> \uc57d\uac04 \ub354 \ubcf5\uc7a1\ud55c \ud45c\ud604\uc2dd\uc744 \uacc4\uc0b0\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\uc0bc\uac01\ubc95:<\/strong> \uc774 \uacc4\uc0b0\uae30\uc5d0\ub294 \uac01\ub3c4\uc640 \uc0bc\uac01\ube44\ub97c \uc0ac\uc6a9\ud558\uc5ec \uacc4\uc0b0\uc744 \uc218\ud589\ud558\ub294 \uae30\ub2a5\uc774 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\uc218\ud559 \uc0c1\uc218:<\/strong> \uacc4\uc0b0\uc5d0 \ud3ec\ud568\ud560 \uc218 \uc788\ub294 \ub450 \uac00\uc9c0 \uc218\ud559 \uc0c1\uc218\uc778 \ud30c\uc774( <em>\u03c0<\/em> )\uc640 \uc624\uc77c\ub7ec \uc0c1\uc218 <em>(e<\/em> )\uac00 \uc7a5\ucc29\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<\/ul>\n<p> \uac00\uc7a5 \uc9c4\ubcf4\ub418\uace0 \uc644\uc804\ud55c <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener\">\uc628\ub77c\uc778 \uadf8\ub798\ud504 \uacc4\uc0b0\uae30\ub97c<\/a> \ucc3e\uace0 \uc2f6\ub2e4\uba74 \uc6b0\ub9ac\uac00 \ub9c1\ud06c\ud55c \uae30\uc0ac\uc5d0\uc11c \ucd5c\uace0\uc758 \ubaa9\ub85d\uc744 \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n<h2 class=\"wp-block-heading\" id=\"emuladores-para-calculadoras-cientificas\"> <span id=\"Emuladores_para_calculadoras_cientificas\">\uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\uc6a9 \uc5d0\ubbac\ub808\uc774\ud130<\/span><\/h2>\n<p> \uc5d0\ubbac\ub808\uc774\ud130\ub294 \uacc4\uc0b0\uae30\uc640 \uac00\uc0c1\uc73c\ub85c \uc0c1\ud638 \uc791\uc6a9\ud560 \uc218 \uc788\ub294 <strong>\uad50\uc721\uc6a9 \uc18c\ud504\ud2b8\uc6e8\uc5b4 \ub3c4\uad6c<\/strong> \uc785\ub2c8\ub2e4. \uc8fc\uc694 \ud2b9\uc9d5\uc740 \ub514\uc790\uc778\uc774 <strong>\uc2dc\uc911\uc758 \uae30\uc874 \ubaa8\ub378<\/strong> \uacfc \ub3d9\uc77c\ud558\ub2e4\ub294 \uac83\uc785\ub2c8\ub2e4. \uac15\uc870\ud560 \uc218 \uc788\ub294 \uc608\ub85c\ub294 \ub2e4\uc591\ud55c \uc5d0\ubbac\ub808\uc774\ud130\uc5d0 \ub300\ud55c \ud3c9\uac00\ud310 \ub77c\uc774\uc13c\uc2a4\uac00 \uc788\ub294 <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener\">Casio \uacc4\uc0b0\uae30\uac00<\/a> \uc788\uc2b5\ub2c8\ub2e4. \uc2e4\uc81c\ub85c Casio\uc758 \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub294 \uac00\uc7a5 \uc778\uae30 \uc788\ub294 \ubaa8\ub378\uc744 \uae30\ubc18\uc73c\ub85c \ud558\uae30 \ub54c\ubb38\uc5d0 \uac00\uc7a5 \uc778\uae30\uac00 \ub192\uc2b5\ub2c8\ub2e4.<\/p>\n<p> \ub2e4\ub978 \uc5d0\ubbac\ub808\uc774\ud130\uc5d0 \ube44\ud574 \uba87 \uac00\uc9c0 \uc7a5\uc810\uc774 \uc788\ub294 \uc2dc\ubbac\ub808\uc774\uc158 \uc18c\ud504\ud2b8\uc6e8\uc5b4\ub97c \uad8c\uc7a5\ud569\ub2c8\ub2e4.<\/p>\n<ul>\n<li> <strong>KeyLog \uae30\ub2a5:<\/strong> \uc774 \uc635\uc158\uc744 \uc0ac\uc6a9\ud558\uba74 \uc808\ucc28 \uc911\uc5d0 \ub204\ub974\ub294 \ubaa8\ub4e0 \ud0a4\uac00 \ud45c\uc2dc\ub418\ubbc0\ub85c \ud559\uc0dd\ub4e4\uc740 \uad50\uc0ac\uc758 \uc9c0\uc2dc\ub97c \ub354 \uc798 \ub530\ub97c \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc815\ub9ac\ud558\uc790\uba74, \ubbf8\uc801\ubd84 \uc5ed\ud559\uc758 \uac1c\ub150\uc744 \uba85\ud655\ud558\uac8c \ud558\ub294 \ub370 \ub9e4\uc6b0 \uc88b\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong>\uc88b\uc740 \uc2dc\uac01\ud654:<\/strong> \uc18c\ud504\ud2b8\uc6e8\uc5b4\uc5d0\ub294 \uc2dc\ubbac\ub808\uc774\ud130\ub97c \ub354 \uc798 \ubcf4\ub294 \ub370 \ub3c4\uc6c0\uc774 \ub418\ub294 \uba87 \uac00\uc9c0 \ub3c4\uad6c\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ud55c \uac00\uc9c0 \uc608\ub294 \uce74\uba54\ub77c\ub97c \ud655\ub300 \ubc0f \ucd95\uc18c\ud558\uc5ec \uacc4\uc0b0\uae30\uc758 \ud06c\uae30\ub97c \ubcc0\uacbd\ud560 \uc218 \uc788\ub294 \ud655\ub300\/\ucd95\uc18c\uc785\ub2c8\ub2e4.<\/li>\n<li> <strong>\ubb38\uc11c \ub0b4\ubcf4\ub0b4\uae30:<\/strong> \ud504\ub85c\uadf8\ub7a8\uc73c\ub85c \uc218\ud589\ub41c \uacc4\uc0b0\uc758 \uc774\ubbf8\uc9c0\uc640 \uc9c0\uce68\uc744 \ub0b4\ubcf4\ub0bc \uc218 \uc788\ub294 \uc635\uc158\uc774 \uc788\uc73c\uba70, \uc774\ub7ec\ud55c \ud30c\uc77c\uc744 \ud559\uc0dd\ub4e4\uc5d0\uac8c \ubcf4\ub0bc \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\" id=\"las-mejores-aplicaciones-de-calculadoras-para-el-movil\"> <span id=\"Las_mejores_aplicaciones_de_calculadoras_para_el_movil\">\ucd5c\uace0\uc758 \ubaa8\ubc14\uc77c \uacc4\uc0b0\uae30 \uc571<\/span><\/h2>\n<p> <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener\">\uae30\uc874 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30<\/a> \uc758 \ub610 \ub2e4\ub978 \ub300\uc548\uc740 Android \ubc0f iOS \ubaa8\ubc14\uc77c \uae30\uae30\uc5d0 \uc124\uce58\ud560 \uc218 \uc788\ub294 \uacc4\uc0b0\uae30 \uc571\uc785\ub2c8\ub2e4. \ub2e4\uc74c\uc73c\ub85c, \uc11c\ub85c \ub208\uc5d0 \ub744\ub294 <strong>\uc138 \uac00\uc9c0 \ub3c4\uad6c\ub97c<\/strong> \ucd94\ucc9c\ud574 \ub4dc\ub9ac\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<ul>\n<li> <strong><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.microblink.photomath\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">PhotoMath<\/a> :<\/strong> \uc774 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc740 \ud2b9\ud788 \uce74\uba54\ub77c \uc778\uc2dd \ubd84\uc57c\uc758 \ubc1c\uc804 \ub355\ubd84\uc5d0 \ucd5c\uadfc \uba87 \ub144\uac04 \ud070 \uc778\uae30\ub97c \ub04c\uc5c8\uc2b5\ub2c8\ub2e4. \uc5ec\uae30\uc5d0\uc11c \ud0a4\ubcf4\ub4dc \uacc4\uc0b0\uae30\uc640 \uce74\uba54\ub77c \ud45c\ud604 \ud310\ub3c5\uae30\ub77c\ub294 \ub450 \uac00\uc9c0 \uc791\ub3d9 \ubaa8\ub4dc\uc5d0 \uc561\uc138\uc2a4\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\ub294 \ub9e4\uc6b0 \ubcf5\uc7a1\ud55c \ubcc0\uc218\uac00 \ud3ec\ud568\ub41c \ubc29\uc815\uc2dd \ubc0f \uae30\ud0c0 \uacc4\uc0b0\uc744 \ud480 \uc218 \uc788\ub294 \uacc4\uc0b0\uae30\uac00 \uc788\ub2e4\ub294 \uc810\uc744 \uc5b8\uae09\ud560 \uac00\uce58\uac00 \uc788\uc2b5\ub2c8\ub2e4.<\/li>\n<li> <strong><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=cz.hipercalc\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">\ud558\uc774\ud37c \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30<\/a> &#8211;<\/strong> \uc774 \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8\uc5d0\uc11c\ub294 100% \uc791\ub3d9\ud558\ub294 \uc644\uc804\ud55c \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\ub97c \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc8fc\ub85c \ubcc0\uc218\ub97c \uc774\uc6a9\ud55c \uacc4\uc0b0\uc744 \ud480 \uc218\ub294 \uc5c6\uc9c0\ub9cc \uc5c4\uccad\ub09c \uacc4\uc0b0 \ub2a5\ub825\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0 \ucd94\ucc9c\ud569\ub2c8\ub2e4.<\/li>\n<li> <strong><a href=\"https:\/\/play.google.com\/store\/apps\/details?id=com.aptapps.floatingcalculator\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">\ubd80\ub3d9 \uacc4\uc0b0\uae30<\/a> :<\/strong> \ub9c8\uc9c0\ub9c9\uc73c\ub85c \uc774 \uacc4\uc0b0\uae30\ub97c \uc5b8\uae09\ud558\uace0 \uc2f6\uc740 \uc774\uc720\ub294 \ube60\ub978 \uacc4\uc0b0\uc744 \ud558\uace0 \uc2f6\uc744 \ub54c \ub9e4\uc6b0 \uc720\uc6a9\ud558\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4. \uc791\ub3d9\uc740 \ub9e4\uc6b0 \uac04\ub2e8\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \ub2e4\ub978 \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8\uc744 \uc0ac\uc6a9\ud558\ub294 \ub3d9\uc2dc\uc5d0 \uacc4\uc0b0\uc744 \uc218\ud589\ud560 \uc218 \uc788\ub294 \uc791\uc740 \ud0ed\uc774 \uc5f4\ub9bd\ub2c8\ub2e4.<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\" id=\"calculadora-profesional-o-calculadora-online-cientifica\"><span id=\"Calculadora_profesional_o_calculadora_online_cientifica\">\uc804\ubb38 \uacc4\uc0b0\uae30 \ub610\ub294 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 \uc628\ub77c\uc778<\/span><\/h2>\n<p> \ub2e4\uc74c\uc73c\ub85c \uc7a5\uce58 \ud615\uc2dd \uacc4\uc0b0\uae30\uc758 \uc7a5\uc810\uacfc \ub514\uc9c0\ud138 \uacc4\uc0b0\uae30\uc758 \uc7a5\uc810\uc5d0 \ub300\ud574 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<\/p>\n<h3 class=\"wp-block-heading\" id=\"por-que-usar-una-calculadora-online\"> \uc65c \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud569\ub2c8\uae4c?<\/h3>\n<p> \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub294 <strong>\uac04\ub2e8\ud558\uace0 \ube60\ub978 \uacc4\uc0b0\uc744<\/strong> \ud558\ub294\ub370 \ub9e4\uc6b0 \uc720\uc6a9\ud569\ub2c8\ub2e4. \ub530\ub77c\uc11c \uae30\uc874 \uacc4\uc0b0\uae30\ub97c \uac00\uc9c0\uace0 \uc788\uc9c0 \uc54a\uc744 \ub54c \ub300\uccb4\uc6a9\uc73c\ub85c \uc0ac\uc6a9\ub418\ub294 \uacbd\uc6b0\uac00 \ub9ce\uc2b5\ub2c8\ub2e4. \ub610\ud55c \uc81c\ud488 \ud560\uc778\uc744 \uacc4\uc0b0\ud558\ub824\ub294 \uacbd\uc6b0\uc640 \uac19\uc774 \uc77c\uc0c1 \uc0dd\ud65c\uc758 \ud2b9\uc815 \uc0c1\ud669\uc5d0 \uc801\ud569\ud55c \uc635\uc158\uc785\ub2c8\ub2e4. \uadf8\ub7ec\ub098 \uc774 \ub3c4\uad6c\ub294 <strong>\uc9c0\uc18d\uc801\uc73c\ub85c \uc0ac\uc6a9<\/strong> \ud558\ub294 \uacbd\uc6b0 \ud2b9\uc815 \uc81c\ud55c \uc0ac\ud56d\uc774 \uc788\uc2b5\ub2c8\ub2e4. \uc65c\ub0d0\ud558\uba74 \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8\uc774\ub098 \ud504\ub85c\uadf8\ub7a8 \ub300\uc2e0 \uacc4\uc0b0\uc744 \uc704\ud574 \ud2b9\uc218 \uc7a5\uce58\uc5d0 \uc758\uc874\ud558\ub294 \uac83\uc774 \ubc14\ub78c\uc9c1\ud558\uae30 \ub54c\ubb38\uc785\ub2c8\ub2e4.<\/p>\n<h3 class=\"wp-block-heading\" id=\"cuando-es-recomendable-comprar-una-calculadora-cientifica\"> \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\ub294 \uc5b8\uc81c \uad6c\uc785\ud558\ub294 \uac83\uc774 \uc88b\ub098\uc694?<\/h3>\n<p> \uc7a5\uce58\ub97c <strong>\uc815\uae30\uc801\uc73c\ub85c \uc7a5\uae30\uac04 \uc0ac\uc6a9<\/strong> \ud558\ub824\ub294 \uacbd\uc6b0 \uc804\ubb38 \uacc4\uc0b0\uae30\uc5d0 \ud22c\uc790\ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \uc218\ud559\uacfc \uad00\ub828\ub41c \uc5f0\uad6c\ub97c \uacf5\ubd80\ud558\uace0 \uc788\uac70\ub098 \uae30\uc220 \ubd84\uc57c\uc5d0\uc11c \uc77c\ud558\ub294 \uacbd\uc6b0\uc785\ub2c8\ub2e4. \uadf8 \uc774\ud6c4\uc5d0\ub294 \ud56d\uc0c1 \ud734\ub300\ud3f0\uc774\ub098 \uae30\uae30\ub97c \uaebc\ub0b4 \uc778\ud130\ub137\uc5d0 \uc811\uc18d\ud574\uc57c \ud558\ub294 \uac83\uc774 \ubd88\ud3b8\ud574\uc9c8 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \ub610\ud55c \ud574\ub2f9 \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8\uc740 <strong>\uae30\ub2a5 \uc218\uc5d0 \ub530\ub77c \uc57d\uac04 \uc81c\ud55c<\/strong> \ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 \uad6c\uc785 \uc5ec\ubd80\uc5d0 \ub300\ud574 \ub354 \uc54c\uace0 \uc2f6\uc73c\uc2dc\uba74 \uc800\ud76c\uac00 \uc124\uba85\ud558\ub294 <a href=\"https:\/\/mathority.org\/ko\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">\ub9e4\uc6b0 \ud3ec\uad04\uc801\uc778 \uae30\uc0ac\ub97c<\/a> \ucc38\uc870\ud558\uc138\uc694.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>( ) % \uc774\uac83 \uc778\ubcf4\uc774\uc2a4 \uc5c6\uc774 ~ \uc548\uc5d0 7 8 9 \u00b6 \u03c0 \uc65c\ub0d0\ud558\uba74 \uad6c\ud558\ub2e4 4 5 6 \u00d7 \uadf8\ub9ac\uace0 \uadf8\ub798\uc11c \u221a \uc0bc 2 1 \u2013 \uacbd\ud5d8\uce58 x\u00b2 \uc5d1\uc2a4^ . 0 = + \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c? \uadf8 \uc5f0\uc0b0\uc740 \ub9e4\uc6b0 \uac04\ub2e8\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \ub450 \uc22b\uc790 \uc0ac\uc774\uc758 \uc5f0\uc0b0(\ub367\uc148, \uacf1\uc148, \uac70\ub4ed\uc81c\uacf1)\uc744 \ud574\uacb0\ud558\uae30 \uc704\ud574 \ubaa8\ub4e0 \ubaa8\ub378\uc5d0 \uc801\uc6a9\ub418\ub294 \uac83\uacfc &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/\"> <span class=\"screen-reader-text\">\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30<\/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":[24],"tags":[],"class_list":["post-80","post","type-post","status-publish","format-standard","hentry","category-24"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 - Mathority<\/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\/\uc628\ub77c\uc778-\uacf5\ud559\uc6a9-\uacc4\uc0b0\uae30\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 - Mathority\" \/>\n<meta property=\"og:description\" content=\"( ) % \uc774\uac83 \uc778\ubcf4\uc774\uc2a4 \uc5c6\uc774 ~ \uc548\uc5d0 7 8 9 \u00b6 \u03c0 \uc65c\ub0d0\ud558\uba74 \uad6c\ud558\ub2e4 4 5 6 \u00d7 \uadf8\ub9ac\uace0 \uadf8\ub798\uc11c \u221a \uc0bc 2 1 \u2013 \uacbd\ud5d8\uce58 x\u00b2 \uc5d1\uc2a4^ . 0 = + \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c? \uadf8 \uc5f0\uc0b0\uc740 \ub9e4\uc6b0 \uac04\ub2e8\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \ub450 \uc22b\uc790 \uc0ac\uc774\uc758 \uc5f0\uc0b0(\ub367\uc148, \uacf1\uc148, \uac70\ub4ed\uc81c\uacf1)\uc744 \ud574\uacb0\ud558\uae30 \uc704\ud574 \ubaa8\ub4e0 \ubaa8\ub378\uc5d0 \uc801\uc6a9\ub418\ub294 \uac83\uacfc &hellip; \uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 \ub354 \ubcf4\uae30 &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mathority.org\/ko\/\uc628\ub77c\uc778-\uacf5\ud559\uc6a9-\uacc4\uc0b0\uae30\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-17T18:49:58+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\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/\"},\"author\":{\"name\":\"Mathority \ud300\",\"@id\":\"https:\/\/mathority.org\/ko\/#\/schema\/person\/b7f677c20b58bb738a8602832db8c1c7\"},\"headline\":\"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\",\"datePublished\":\"2023-07-17T18:49:58+00:00\",\"dateModified\":\"2023-07-17T18:49:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/\"},\"wordCount\":13,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/mathority.org\/ko\/#organization\"},\"articleSection\":[\"\uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/\",\"url\":\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/\",\"name\":\"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 - Mathority\",\"isPartOf\":{\"@id\":\"https:\/\/mathority.org\/ko\/#website\"},\"datePublished\":\"2023-07-17T18:49:58+00:00\",\"dateModified\":\"2023-07-17T18:49:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mathority.org\/ko\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30\"}]},{\"@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":"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 - Mathority","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\/\uc628\ub77c\uc778-\uacf5\ud559\uc6a9-\uacc4\uc0b0\uae30\/","og_locale":"ko_KR","og_type":"article","og_title":"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 - Mathority","og_description":"( ) % \uc774\uac83 \uc778\ubcf4\uc774\uc2a4 \uc5c6\uc774 ~ \uc548\uc5d0 7 8 9 \u00b6 \u03c0 \uc65c\ub0d0\ud558\uba74 \uad6c\ud558\ub2e4 4 5 6 \u00d7 \uadf8\ub9ac\uace0 \uadf8\ub798\uc11c \u221a \uc0bc 2 1 \u2013 \uacbd\ud5d8\uce58 x\u00b2 \uc5d1\uc2a4^ . 0 = + \uc628\ub77c\uc778 \uacc4\uc0b0\uae30\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc740 \ubb34\uc5c7\uc785\ub2c8\uae4c? \uadf8 \uc5f0\uc0b0\uc740 \ub9e4\uc6b0 \uac04\ub2e8\ud569\ub2c8\ub2e4. \uae30\ubcf8\uc801\uc73c\ub85c \ub450 \uc22b\uc790 \uc0ac\uc774\uc758 \uc5f0\uc0b0(\ub367\uc148, \uacf1\uc148, \uac70\ub4ed\uc81c\uacf1)\uc744 \ud574\uacb0\ud558\uae30 \uc704\ud574 \ubaa8\ub4e0 \ubaa8\ub378\uc5d0 \uc801\uc6a9\ub418\ub294 \uac83\uacfc &hellip; \uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 \ub354 \ubcf4\uae30 &raquo;","og_url":"https:\/\/mathority.org\/ko\/\uc628\ub77c\uc778-\uacf5\ud559\uc6a9-\uacc4\uc0b0\uae30\/","article_published_time":"2023-07-17T18:49:58+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\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#article","isPartOf":{"@id":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/"},"author":{"name":"Mathority \ud300","@id":"https:\/\/mathority.org\/ko\/#\/schema\/person\/b7f677c20b58bb738a8602832db8c1c7"},"headline":"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30","datePublished":"2023-07-17T18:49:58+00:00","dateModified":"2023-07-17T18:49:58+00:00","mainEntityOfPage":{"@id":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/"},"wordCount":13,"commentCount":0,"publisher":{"@id":"https:\/\/mathority.org\/ko\/#organization"},"articleSection":["\uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/","url":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/","name":"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30 - Mathority","isPartOf":{"@id":"https:\/\/mathority.org\/ko\/#website"},"datePublished":"2023-07-17T18:49:58+00:00","dateModified":"2023-07-17T18:49:58+00:00","breadcrumb":{"@id":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mathority.org\/ko\/%ec%98%a8%eb%9d%bc%ec%9d%b8-%ea%b3%b5%ed%95%99%ec%9a%a9-%ea%b3%84%ec%82%b0%ea%b8%b0\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mathority.org\/ko\/"},{"@type":"ListItem","position":2,"name":"\uac00\uc7a5 \uc644\ubcbd\ud558\uace0 \uc2e4\uc6a9\uc801\uc778 \uc628\ub77c\uc778 \uacf5\ud559\uc6a9 \uacc4\uc0b0\uae30"}]},{"@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\/80","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=80"}],"version-history":[{"count":0,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/posts\/80\/revisions"}],"wp:attachment":[{"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/media?parent=80"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/categories?post=80"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mathority.org\/ko\/wp-json\/wp\/v2\/tags?post=80"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}