<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>My Story, My Life</title>
		<link>http://blog.5hoon.com/</link>
		<description>내가 사는 이야기</description>
		<language>ko</language>
		<pubDate>Wed, 24 Dec 2008 14:59:38 +0900</pubDate>
		<generator>Textcube 1.7.5 : Risoluto</generator>
		<image>
		<title>My Story, My Life</title>
		<url>http://blog.5hoon.com/attach/1/4393445061.jpg</url>
		<link>http://blog.5hoon.com/</link>
		<width>404</width>
		<height>500</height>
		<description>내가 사는 이야기</description>
		</image>
		<item>
			<title>Traveling Salesman Probelm</title>
			<link>http://blog.5hoon.com/107</link>
			<description>Traveling Salesman Problem, 외판원 문제.&lt;br /&gt;이번학기에 X줄 타면서 한과제...&lt;br /&gt;대략 3박 4일 걸렸다.. 순수 코딩시간만 해도 머리가 잘 안돌아서 40시간쯤은 했....&lt;br /&gt;여튼...&lt;br /&gt;&lt;br /&gt;위키피디아에서 말하기를..&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;Q: given a number of cities and the costs of traveling from any city to
any other city, what is the least-cost round-trip route that visits
each city exactly once and then returns to the starting city?&lt;/div&gt;&lt;br /&gt;즉, 주어진 도시와 도시들 사이의 거리를 알때, 모든 도시를 한번씩 방문하여 제자리로 돌아 오는 최단 거리의 경로는 어떻게 될까?&lt;br /&gt;&lt;br /&gt;두가지 방법으로 문제를 접근해 보았다.&lt;br /&gt;1. Branch and Bound&lt;br /&gt;&lt;p id=&quot;more107_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;107_0&#039;,&#039;Branch and Bound&#039;,&#039;Branch and Bound&#039;); return false;&quot;&gt;Branch and Bound&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content107_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;꽤나 간단한 알고리즘 이다.&lt;br /&gt;예를 들어 4개의 도시가 있다고 하고 각각의 거리를 아래의 표와 같이 나타내어보자.&lt;br /&gt;&lt;table width=&quot;150&quot; border=&quot;1&quot;&gt;
  &lt;tbody&gt;&lt;tr&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
    &lt;td&gt;A&lt;/td&gt;
    &lt;td&gt;B&lt;/td&gt;
    &lt;td&gt;C&lt;/td&gt;
    &lt;td&gt;D&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;A&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
    &lt;td&gt;2&lt;/td&gt;
    &lt;td&gt;7&lt;/td&gt;
    &lt;td&gt;9&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;B&lt;/td&gt;
    &lt;td&gt;2&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
    &lt;td&gt;5&lt;/td&gt;
    &lt;td&gt;4&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;C&lt;/td&gt;
    &lt;td&gt;7&lt;/td&gt;
    &lt;td&gt;5&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
    &lt;td&gt;1&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td&gt;D&lt;/td&gt;
    &lt;td&gt;9&lt;/td&gt;
    &lt;td&gt;4&lt;/td&gt;
    &lt;td&gt;1&lt;/td&gt;
    &lt;td&gt;&amp;nbsp;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;우선 세도시를 선택한다. A,B,C 라하면.&lt;br /&gt;세도시를 방문하는 법은 한가지 A-B-C 뿐이다.&lt;br /&gt;즉, [A,B] + [B,C] + [C.A] = 2 + 5 + 7 = 14 이다.&lt;br /&gt;&lt;br /&gt;여기서 D 도시를 경유하기 위해 최적의 위치를 찾는다.&lt;br /&gt;A,B 사이에 A,D,B 를 시도해보고&lt;br /&gt;B,C 사이에 B,D,C 를 시도해보고&lt;br /&gt;C,A 사이에 C,D,A 를 시도한후&lt;br /&gt;거리가 최소가 되는 경우를 선택한다.&lt;br /&gt;&lt;br /&gt;[A,D] + [D,B] - [A,B] = 9 + 4 - 2 = 11&lt;br /&gt;[B,D] + [D,C] - [B,C] = 4 + 1 - 5 = 0&lt;br /&gt;[C,D] + [D,A] - [C,A] = 1 + 9 - 7 = 3&lt;br /&gt;&lt;br /&gt;즉, B-D-C 에 넣어야 최단 경로가 된다..&lt;br /&gt;결론적으로 A-B-D-C 의 경로로 여행하게 된다.&lt;br /&gt;&lt;br /&gt;이것을 모든 도시를 다 방문 했을때까지 반복 하면 되는것이다.&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;2. Christofides Algorithm&lt;br /&gt;&lt;p id=&quot;more107_1&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;107_1&#039;,&#039; more.. &#039;,&#039; less.. &#039;); return false;&quot;&gt; more.. &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content107_1&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;Definition: (1) A heuristic algorithm to find a near-optimal solution to the traveling salesman problem.&lt;br /&gt;Step 1: find a minimum spanning tree T.&lt;br /&gt;Step 2: find a perfect matching M among vertices with odd degree.&lt;br /&gt;Step 3: combine the edges of M and T to make a multigraph G. &lt;br /&gt;Step 4: find an Euler cycle in G by skipping vertices already seen.&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/attach/1/4502396906.png&quot; width=&quot;327&quot; height=&quot;245&quot; /&gt;&lt;/div&gt;&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/attach/1/6325457376.png&quot; width=&quot;327&quot; height=&quot;246&quot; /&gt;&lt;/div&gt;&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/attach/1/8586570103.png&quot; width=&quot;327&quot; height=&quot;246&quot; /&gt;&lt;/div&gt;&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/attach/1/5474437722.png&quot; width=&quot;327&quot; height=&quot;245&quot; /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;저 말대로 실행하면 된다 -_-;&lt;br /&gt;물론... 드럽게 어렵다...&lt;br /&gt;(과제시간의 90% 는 이것때문에...)&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;완성작.&lt;br /&gt;&lt;p id=&quot;more107_2&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;107_2&#039;,&#039; more.. &#039;,&#039; less.. &#039;); return false;&quot;&gt; more.. &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content107_2&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;applet code=&quot;tsp.VisibleTSPApplet.class&quot; archive=&quot;http://blog.5hoon.com/attach/1/5262133628.jar&quot; width=&quot;600&quot; height=&quot;600&quot;&gt;자바가 필요합니다.&lt;/applet&gt;&lt;br /&gt;기본적으로 들어 있는 Command 는 Node 와 Node 사이의 distance 를 입력 해놓은 것입니다.&lt;br /&gt;&lt;link rel=&quot;File-List&quot; href=&quot;file:///C:%5CUsers%5Cadmin%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml&quot;&gt;&lt;br /&gt;&lt;p id=&quot;more107_3&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;107_3&#039;,&#039;Basic Command&#039;,&#039;Basic Command&#039;); return false;&quot;&gt;Basic Command&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content107_3&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(250, 255, 169);&quot;&gt;&lt;code&gt;NODE N1 75 125 DORM&lt;br /&gt;NODE N2 75 350 P A B&lt;br /&gt;NODE N3 125 250 Fountain&lt;br /&gt;NODE N4 225 300 CSE&lt;br /&gt;NODE N5 275 225 HUB – lunch&lt;br /&gt;NODE N6 400 325 CSE lecture&lt;br /&gt;NODE N7 375 100 PDL&lt;br /&gt;NODE N8 250 50 DennyField&lt;br /&gt;EDGE E1 N1 N2 630&lt;br /&gt;EDGE E2 N1 N3 630&lt;br /&gt;EDGE E3 N1 N4 810&lt;br /&gt;EDGE E4 N1 N5 840&lt;br /&gt;EDGE E5 N1 N6 890&lt;br /&gt;EDGE E6 N1 N7 960&lt;br /&gt;EDGE E7 N1 N8 840&lt;br /&gt;EDGE E8 N2 N3 210&lt;br /&gt;EDGE E9 N2 N4 420&lt;br /&gt;EDGE E10 N2 N5 490&lt;br /&gt;EDGE E11 N2 N6 490&lt;br /&gt;EDGE E12 N2 N7 650&lt;br /&gt;EDGE E13 N2 N8 770&lt;br /&gt;EDGE E14 N3 N4 140&lt;br /&gt;EDGE E15 N3 N5 280&lt;br /&gt;EDGE E16 N3 N6 250&lt;br /&gt;EDGE E17 N3 N7 460&lt;br /&gt;EDGE E18 N3 N8 680&lt;br /&gt;EDGE E19 N4 N5 245&lt;br /&gt;EDGE E20 N4 N6 140&lt;br /&gt;EDGE E21 N4 N7 460&lt;br /&gt;EDGE E22 N4 N8 680&lt;br /&gt;EDGE E23 N5 N6 350&lt;br /&gt;EDGE E24 N5 N7 210&lt;br /&gt;EDGE E25 N5 N8 420&lt;br /&gt;EDGE E26 N6 N7 490&lt;br /&gt;EDGE E27 N6 N8 810&lt;br /&gt;EDGE E28 N7 N8 280&lt;/code&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;아래는 추가적으로 외판원 문제를 풀기위한 방법입니다.&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;Sample Data 1:&lt;br /&gt;BRANCH&lt;br /&gt;DELAY 1000&lt;br /&gt;SOLVE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sample Data 2:&lt;br /&gt;MST&lt;br /&gt;SOLVE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sample Data 3:&lt;br /&gt;MST&lt;br /&gt;STEP&lt;br /&gt;MATCH&lt;br /&gt;MERGE&lt;br /&gt;CYCLE&lt;/div&gt;복사후 붙여넣기만 하면 완료.. =ㅁ=&lt;/div&gt;&lt;br /&gt;여튼.. 이수업.. 학점하난 잘받았다..-_-a&lt;br /&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>CSE373</category>
			<category>CSE</category>
			<category>JAVA</category>
			<category>Programming</category>
			<category>Programming - java</category>
			<category>Traveling Salesman Problem</category>
			<category>외판원 문제</category>
			<category>자바</category>
			<category>프로그래밍</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/107</guid>
			<comments>http://blog.5hoon.com/107#entry107comment</comments>
			<pubDate>Wed, 24 Dec 2008 14:51:29 +0900</pubDate>
		</item>
		<item>
			<title>Harry Potter - Half Blood Prince Trailer</title>
			<link>http://blog.5hoon.com/106</link>
			<description>&lt;div style=&quot;text-indent: -20px;&quot;&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; width=&quot;630&quot; height=&quot;265&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;/&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot;/&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;/&gt;&lt;param name=&quot;flashvars&quot; value=&quot;width=630&amp;amp;height=265&amp;amp;thumbsinplaylist=true&amp;amp;displayheight=245&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f1006476612.flv|c_test.flv+%2811.20+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot;/&gt;&lt;!--[if !IE]&gt; &lt;--&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; transparent=&quot;yes&quot; data=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot; flashvars=&quot;thumbsinplaylist=true&amp;amp;displayheight=245&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f1006476612.flv|c_test.flv+%2811.20+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot; width=&quot;630&quot; height=&quot;265&quot;&gt;&lt;p&gt;&lt;a href=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;&gt;[Flash]&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;!--&gt; &lt;![endif]--&gt;&lt;/object&gt;&lt;/div&gt;&lt;br /&gt;해리포터 6편 혼혈왕자의 영화 공식 예고편입니다.&lt;br /&gt;&lt;br /&gt;고화질 다운로드 링크는 &lt;a href=&quot;http://pdl.warnerbros.com/wbol/uk/movies/hp6/Champion_1080p.wmv&quot; target=&quot;_blank&quot;&gt;여기에&lt;/a&gt;&lt;br /&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>Entertainment</category>
			<category>Half blood prince</category>
			<category>Harry Potter</category>
			<category>영화</category>
			<category>예고편</category>
			<category>해리포터</category>
			<category>혼혈왕자</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/106</guid>
			<comments>http://blog.5hoon.com/106#entry106comment</comments>
			<pubDate>Sun, 23 Nov 2008 14:44:12 +0900</pubDate>
		</item>
		<item>
			<title>간단한 수학 퍼즐 문제 하나..</title>
			<link>http://blog.5hoon.com/105</link>
			<description>룸메이트가 자러 가지 않아서 혼자 불끄긴 싫어서 그냥 같이 깨어 있기에....&lt;br /&gt;포스팅이나 하나더 ... -0-&lt;br /&gt;&lt;br /&gt;예전에 수학교수가 내준 문제이다.&lt;br /&gt;&lt;br /&gt;Q. 2,6,10 이 쓰여진 숫자 카드가 여러장 있다고 하자.&lt;br /&gt;이중 7 개를 골라 더하거나 빼서 52 를 만들어라.&lt;br /&gt;즉, ㅁ±ㅁ±ㅁ±ㅁ±ㅁ±ㅁ±ㅁ = 52&lt;br /&gt;&lt;br /&gt;A. &lt;br /&gt;&lt;p id=&quot;more105_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;105_0&#039;,&#039;기권하기..&#039;,&#039;답감추기&#039;); return false;&quot;&gt;기권하기..&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content105_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; 정답은 불가능이다.&lt;br /&gt;&lt;br /&gt;&lt;p id=&quot;more105_1&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;105_1&#039;,&#039; 어거지 풀이 &#039;,&#039; 감추기 &#039;); return false;&quot;&gt; 어거지 풀이 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content105_1&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;내가 썻던 어거지 풀이..&lt;br /&gt;10+10+10+6+6+2 = 52&lt;br /&gt;&lt;br /&gt;7진법이라 가정하면&lt;br /&gt;7+7+7+6+6+2 = 37&lt;br /&gt;&lt;br /&gt;근데 이건 아니란다 ㅠ&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;p id=&quot;more105_2&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;105_2&#039;,&#039;증명 보기&#039;,&#039;증명 감추기&#039;); return false;&quot;&gt;증명 보기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content105_2&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;2,6,10 을 보면 4n -2, n=1,2,3 으로 나타낼수 있다.&lt;br /&gt;&lt;br /&gt;7번을 더하거나 빼므로&lt;br /&gt;4n -2 를 n= -2,-1,0 을 추가하 -10,-6,-2 를 추가한후에..&lt;br /&gt;&lt;br /&gt;a~h 까지의 7 알파벳을 사용하여.. (a~h 는 n 에 속한다)&lt;br /&gt;4a - 2 + 4b - 2 + 4c -2 + ... + 4h - 2 = 52&lt;br /&gt;4(a+b+c+ ... + h) - 2*7 = 52&lt;br /&gt;4(a+b+c+ ... + h) - 2*7 = 52&lt;br /&gt;4(a+b+c+ ... + h) = 66&lt;br /&gt;a+b+c+...+h = 16.5&lt;br /&gt;&lt;br /&gt;a~h 는 자연수라 햇으니 16.5 가 나올수가 없다.&lt;br /&gt;즉, 이문제는 불가능&lt;br /&gt;&lt;br /&gt;풀었다고 교수에게 메일 보냈더니..&lt;br /&gt;&lt;br /&gt;&lt;p id=&quot;more105_3&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;105_3&#039;,&#039;교수曰&#039;,&#039;OTL&#039;); return false;&quot;&gt;교수曰&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content105_3&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;그냥 처음부터 양변을 2로 나누랜다..&lt;br /&gt;즉, 1,3,5 를 가지고 26 을 만들어야한다..&lt;br /&gt;홀수를 홀수번 더하면 홀수가 나온다. &lt;br /&gt;즉, 짝수 만들기는 불가능 -_-;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/수학&quot;&gt;수학&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/104&quot;&gt;수학문제 하나..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/99&quot;&gt;미분에 관련된 증명 한문제&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/98&quot;&gt;타원과 관련된 미분 한문제&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/95&quot;&gt;LaTeX 수식 작성하기&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/49&quot;&gt;수학 문제 -0-&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>수학</category>
			<category>수학</category>
			<category>증명</category>
			<category>퍼즐</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/105</guid>
			<comments>http://blog.5hoon.com/105#entry105comment</comments>
			<pubDate>Mon, 17 Nov 2008 18:48:34 +0900</pubDate>
		</item>
		<item>
			<title>수학문제 하나..</title>
			<link>http://blog.5hoon.com/104</link>
			<description>지식인 답변을 하나 작성 하다가 쓸데없이(?) 증명 까지 해버린 문제가 하나 있었다..&lt;br&gt;SAT수학을 가르치다가도 비슷한 문제가 있던 기억이 있기에 여기에 옮겨 본다.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;Q: 어떤수 x 를 4로 나누면 2가 남고, 5로 나누면 3이 남고, 6으로 나누면 4가 남는다. x 를 만족하는 가장 작은 자연수를 구하여라.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;A: 간단히 4,5,6 의 최소 공배수인 60 에 2 를 뺀 58 이 답이다.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;여기서 &lt;br&gt;4로 나누면 2가 남고 -&amp;gt; 4-2 = 2&lt;br&gt;5로 나누면 3이 남고 -&amp;gt; 5-2 = 3&lt;br&gt;6으로 나누면 4가 남고 -&amp;gt; 6-2 = 4&lt;br&gt;즉, 나누는 수와 나머지의 차가 2로 항상 일정 하다는걸 알수있다.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;문제를 다시 쓰면,&lt;br&gt;어떤수 x 를 a 로 나누면 나머지가 a-k, b 로 나누면 b-k, c 로 나누면 c-k 인 가장 작은 자연수 x를 구하라고 하면,&lt;br&gt;여기서 l,m,n 을 임의의 자연수라고 하면&lt;br&gt;
x = a*l + a-k = a(l+1) - k&lt;br&gt;
&amp;nbsp; =&amp;gt; x + k = a * l&lt;br&gt;
x = b*m + b-k = b(m+1) - k&lt;br&gt;
&amp;nbsp; =&amp;gt; x + k = b * m&lt;br&gt;
x = c*n + c-k = c(n+1) - k&lt;br&gt;
&amp;nbsp; =&amp;gt; x + k = c * n&lt;br&gt;(다른 알파벳 쓰기 싫어서 중간에 l=l+1, m = m+1, n=n+1이라 했다)&lt;br&gt;&lt;br&gt;즉, x+k 는 a 의 배수이면서 b의 배수 이면서 c 의 배수 임을 알수 있다.&lt;br&gt;고로, x+k 는 a,b,c 의 공배수가 되고&lt;br&gt;x&amp;nbsp; 는 a,b,c 의 공배수에서 k 를 빼면 되는것이다.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;반대로, 어떤수 x 를 a 로 나누면 나머지가 k, b 로 나누면 k, c 로 나누면 k 인 가장 작은 자연수 x를 구하라고 하면 어떻게 될까?&lt;br&gt;&lt;br&gt;마찬가지로 다시 x 를&lt;br&gt;x = al + k&lt;br&gt;=&amp;gt;&amp;nbsp; x - k = al&lt;br&gt;x = bn + k&lt;br&gt;=&amp;gt;&amp;nbsp; x - k = bn&lt;br&gt;x = cm + k&lt;br&gt;=&amp;gt;&amp;nbsp; x - k = cm&lt;br&gt;&lt;br&gt;이번엔 x-k 가 a,b,c,의 공배수가 됨을 알수 있다&lt;br&gt;즉 x는 a,b,c 의 공배수 +k 가 되는것이다.&lt;/div&gt;&lt;br&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/수학&quot;&gt;수학&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/105&quot;&gt;간단한 수학 퍼즐 문제 하나..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/99&quot;&gt;미분에 관련된 증명 한문제&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/98&quot;&gt;타원과 관련된 미분 한문제&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/95&quot;&gt;LaTeX 수식 작성하기&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/49&quot;&gt;수학 문제 -0-&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>수학</category>
			<category>공배수</category>
			<category>나눗셈</category>
			<category>수학</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/104</guid>
			<comments>http://blog.5hoon.com/104#entry104comment</comments>
			<pubDate>Mon, 17 Nov 2008 18:17:36 +0900</pubDate>
		</item>
		<item>
			<title>어이상실 방송 금지곡 모음..</title>
			<link>http://blog.5hoon.com/103</link>
			<description>&lt;br&gt;
&lt;script language=&quot;javascript&quot;&gt;
var post103_arr = new Array(&quot;8388833610&quot;,&quot;6869795921&quot;,&quot;1743054433&quot;,&quot;6634706017&quot;,&quot;7914757974&quot;,&quot;5390190283&quot;,&quot;8461172301&quot;,&quot;5625249106&quot;,&quot;6521558295&quot;,&quot;4676411993&quot;,&quot;8417226850&quot;,&quot;5228272038&quot;,&quot;2907070311&quot;,&quot;6574620273&quot;,&quot;6754762661&quot;,&quot;5150220104&quot;);
var post103_lyric= new Array(
&quot;A-yo\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용\n\nYo Microphone Check\n1 2 Uh A yo\n\n아무도 누구도 날 몰라줄 때 A yo\n왕따가 구타당할 때 A yo\n빽 있어 유죄가 무죄가 될 때\n배고픈데 밥이 없을 때 A yo\n누가 새 Timbdrland Boots 밟았을 때 A yo\n사랑했던 네가 나 찰 때 A yo\n네가 도리도리도리 춤을 출 때\n아파도 병원에 못갈때 A yo\n은메달 따고도 너 울 때 A yo\n차가 막혀 화 삭혀야 할 때 A yo\n집어쳐 A Yo\n\n이 음악에 미쳐\nLet&#039;s git it on\ngit it on ha ha\nLet&#039;s bring it on\nbring it on ha com&#039;on\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용\n\n반가운 친구를 만날 때 난 A yo\n예쁜 여자가 눈길 보낼 때 난 A yo\nTV쇼에 Hip hop이 나오면 난 A yo\n사고 싶은 옷을 선물 받을 때도 난\n전화 받을 때 내가 하는 말 A yo\n웨이터를 부를 때도 난 A yo\n싸울 때도 A yo\n말릴 때도 A yo\n화해할 땐 A yo\n은행 구좌 속에 돈이 가득찰때 난 A yo\n내가 산 복권이 당첨이 됐을때 난 A yo\n이렇게 기쁠 때 난 A yo\n\n소리쳐 모두가 들을 수 있게\nLet&#039;s git it on\ngit it on ha ha\nLet&#039;s bring it on\nbring it on ha com&#039;on\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said \n새로 태어난\n힙합 빠삐용\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용\n\n열받지 가끔씩 A Yo\n신나지 다 같이 A Yo\n모두 하나지 Hip hop\n우린 이렇게 살지\n사는게 다 그렇지\nH-I-P H-O-P\n그래 난 어차피\n내가 얽매였던 고삐\n내 안에 또 하나의\n나를 깨워 깨워\n다른 모든 것을 잠재워\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용\n\nI said one for the money\nand two for the show\n지누션과 함께면\n너도 Champion\nHey Hey Hey\nI Said\n새로 태어난\n힙합 빠삐용&quot;,&quot;&quot;);

function post103_play(num){
     AudioPlayer.embed(&quot;post_103_music_area&quot;, {soundFile: &quot;http://blog.5hoon.com/attach/1/&quot;+post103_arr[num]+&quot;.mp3&quot;, autostart: &quot;yes&quot;});
//     document.getElementById(&quot;post_103_music_lyric&quot;).innerHTML = post103_lyric[num].replace(/\\n/g,&quot;&lt;br /&gt;&quot;);
}
&lt;/script&gt;

어디서 보게 된 영상..&lt;br&gt;
&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; width=&quot;425&quot; height=&quot;340&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;/&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot;/&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;/&gt;&lt;param name=&quot;flashvars&quot; value=&quot;width=425&amp;amp;height=340&amp;amp;thumbsinplaylist=true&amp;amp;displayheight=320&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f3595933758.flv|cencered.flv+%2813.59+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot;/&gt;&lt;!--[if !IE]&gt; &lt;--&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; transparent=&quot;yes&quot; data=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot; flashvars=&quot;thumbsinplaylist=true&amp;amp;displayheight=320&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f3595933758.flv|cencered.flv+%2813.59+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot; width=&quot;425&quot; height=&quot;340&quot;&gt;&lt;p&gt;&lt;a href=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;&gt;[Flash]&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;!--&gt; &lt;![endif]--&gt;&lt;/object&gt;&lt;br&gt;
&lt;br&gt;
아는 노래도 몇곡 있고..&lt;br&gt;
그래서 여기 나오는 노래들을 모와 보았다..&lt;br&gt;
&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;&lt;p id=&quot;more103_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;103_0&#039;,&#039;1. 사회부정적인 내용&#039;,&#039;1. 사회부정적인 내용&#039;); return false;&quot;&gt;1. 사회부정적인 내용&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content103_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;1. 사회 부정적 내용&lt;br&gt;
지누션 3집 A-Yo ㅡ &lt;a onclick=&quot;post103_play(&#039;0&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;왕따가 구타당할 때&quot; 라는 가사가 &#039;사회부정적인 내용&#039;이라는 이유로&lt;br&gt;
&lt;br&gt;
왁스 2집 머니 ㅡ &lt;a onclick=&quot;post103_play(&#039;1&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;머니&quot; 라는 가사가 &#039;물질 만능주의&#039;와 &#039;황금주의&#039; 를 부추긴다는 이유로&lt;br&gt;
&lt;br&gt;
심태윤 1.5집 클랄라 ㅡ &lt;a onclick=&quot;post103_play(&#039;2&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 클랄라&quot; = 비사전 용어&lt;br&gt;
=&amp;gt; &#039;큰일날라&#039;의 뜻을 담고 있어 &#039;사회 불안을 조성&#039; 한다는 이유로&lt;br&gt;
&lt;br&gt;
CB MASS 3집 동네한바퀴 ㅡ &lt;a onclick=&quot;post103_play(&#039;3&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 특정지명을 거론하며 &#039;압구정문화&#039;를 안좋게 묘사했다는 이유로&lt;br&gt;
&lt;br&gt;
Epih high 2집 Daydream(사직서) ㅡ &lt;a onclick=&quot;post103_play(&#039;4&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;그냥 일 다 관두고 막살래&quot;라는 가사가 &#039;직업을 하찮게 여기는 풍조&#039;를 조성한다는 이유로&lt;br&gt;
&lt;br&gt;
Epih high 2집 Lesson2 ㅡ &lt;a onclick=&quot;post103_play(&#039;5&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;이 땅의 법이 출석부라면 나 결석하리&quot;라는 가사가 &#039;학생들의 결석&#039;을 조정한다며&lt;br&gt;
&lt;br&gt;
Epih high 2집 뚜루루 ㅡ &lt;a onclick=&quot;post103_play(&#039;6&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;시속 200km 폭주&quot;라는 가사가 &#039;과속운전&#039;을 조장한다는 이유로&lt;br&gt;
&lt;br&gt;
임창정 10집 소주 한 잔 ㅡ &lt;a onclick=&quot;post103_play(&#039;7&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 제목에 &quot;소주&quot; 가 들어가 &#039;청소년에게 악영향&#039;을 끼칠수 있다는 이유로&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;p id=&quot;more103_1&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;103_1&#039;,&#039;2. 저급한 단어 사용&#039;,&#039;2. 저급한 단어 사용&#039;); return false;&quot;&gt;2. 저급한 단어 사용&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content103_1&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;2. 저급한 단어 사용&lt;br&gt;
자우림 1집 일탈 ㅡ &lt;a onclick=&quot;post103_play(&#039;8&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;신도림 역안에서 스트립 쇼를~&quot; 이란 가사가 선정적 이라는 이유로&lt;br&gt;
&lt;br&gt;
윤종신 9집 팥빙수 ㅡ &lt;a onclick=&quot;post103_play(&#039;9&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;열라 좋아&quot; 라는 비속어 사용&lt;br&gt;
&lt;br&gt;
박명수 1집 바다의 왕자 ㅡ &lt;a onclick=&quot;post103_play(&#039;10&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;세 겹 뱃살 접힌 아줌마&quot; 라는 가사가 저속하다는 이유료&lt;br&gt;
&lt;br&gt;
조혜련 1집 아나까나 ㅡ &lt;a onclick=&quot;post103_play(&#039;11&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 수준미달 이라는 이유로&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;p id=&quot;more103_2&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;103_2&#039;,&#039;3. 고작 이것때문에?&#039;,&#039;3. 고작 이것때문에?&#039;); return false;&quot;&gt;3. 고작 이것때문에?&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content103_2&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;3. 고작 이것때문에?&lt;br&gt;
이브 4집 Mad About U ㅡ &lt;a onclick=&quot;post103_play(&#039;12&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 노래에 영어가 과다하게 많아 국어순화에 역행한다는 이유로&lt;br&gt;
&lt;br&gt;
은지원 3집 미카사로 ㅡ &lt;a onclick=&quot;post103_play(&#039;13&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 가사내용이 무슨 뜻인지 전달안된다는 이유로&lt;br&gt;
&lt;br&gt;
이승환 3집 덩크슛 ㅡ &lt;a onclick=&quot;post103_play(&#039;14&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; &quot;주문을 외워보자 야발라기히야 야발라기히야&quot; 라는 가사가 미신을 조장한다는 이유로&lt;br&gt;
&lt;br&gt;
넬 1집 기생충  ㅡ &lt;a onclick=&quot;post103_play(&#039;15&#039;);&quot;&gt;듣기&lt;/a&gt;&lt;br&gt;
=&amp;gt; 기생충 이라는 제목이 더럽고 시청자들에게 불쾌감을 유발할수 있다는 이유로&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;
&lt;br&gt;
&lt;div id=&quot;post_103_music_area&quot;&gt;음악 플레이어 위치&lt;br&gt;듣기 버튼을 눌러주세요&lt;/div&gt;&lt;p id=&quot;more103_3&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;103_3&#039;,&#039; 가사보기 &#039;,&#039; 가사감추기 &#039;); return false;&quot;&gt; 가사보기 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content103_3&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div id=&quot;post_103_music_lyric&quot;&gt;듣기 버튼을 먼저 눌러주세요&lt;/div&gt; &lt;/div&gt;

&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/Music&quot;&gt;Music&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/102&quot;&gt;아름다운 이별&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/100&quot;&gt;김종국 - 어제보다 오늘 더 MV&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/93&quot;&gt;Yukie Nishimura - Letter//西村由紀江 - 手紙&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/87&quot;&gt;말할수 없는 비밀 - Secret, OST 듣기 &amp;amp; 악보&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/84&quot;&gt;김건모 사랑해 with 소녀시대&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>Music</category>
			<category>A-Yo</category>
			<category>CB MASS</category>
			<category>Daydream</category>
			<category>Epic high</category>
			<category>Lesson2</category>
			<category>Mad About U</category>
			<category>가사</category>
			<category>가요</category>
			<category>기생충</category>
			<category>넬</category>
			<category>노래</category>
			<category>덩크슛</category>
			<category>동네 한바퀴</category>
			<category>뚜루루</category>
			<category>머니</category>
			<category>미카사로</category>
			<category>바다의 왕자</category>
			<category>박명수</category>
			<category>방송 금지</category>
			<category>소주한잔</category>
			<category>심태윤</category>
			<category>아나까나</category>
			<category>에픽하이</category>
			<category>왁스</category>
			<category>윤종신</category>
			<category>은지원</category>
			<category>이브</category>
			<category>이승환</category>
			<category>일탈</category>
			<category>임창정</category>
			<category>자우림</category>
			<category>조혜련</category>
			<category>지누션</category>
			<category>클랄라</category>
			<category>팥빙수</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/103</guid>
			<comments>http://blog.5hoon.com/103#entry103comment</comments>
			<pubDate>Tue, 11 Nov 2008 20:37:42 +0900</pubDate>
		</item>
		<item>
			<title>아름다운 이별</title>
			<link>http://blog.5hoon.com/102</link>
			<description>오랫만에 라디오 스타를 보다가..&lt;br&gt;&lt;br&gt;김건모가 부른 아름다운 이별을&lt;br&gt;옥주현이 리메이크 해서 불렀다길레..&lt;br&gt;검색해보니..&lt;br&gt;&lt;br&gt;많은 가수 들이 불렀던...&lt;br&gt;그래서 다 모와서 ^^;&lt;br&gt;(가사는 맨 밑에 ^^)&lt;br&gt;&lt;br&gt;김건모&lt;br&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;/plugins/Penguin_player/mediaplayer.swf&quot; id=&quot;audioplayer1&quot; height=&quot;24&quot; width=&quot;290&quot;&gt;flash mp3 player object&lt;param name=&quot;movie&quot; value=&quot;/plugins/Penguin_player/mediaplayer.swf&quot;&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;playerID=1&amp;amp;bg=0xffffff&amp;amp;leftbg=0xcccccc&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0xffffff&amp;amp;lefticon=0xffffff&amp;amp;righticon=0xffffff&amp;amp;righticonhover=0xcccccc&amp;amp;text=0x000000&amp;amp;slide=0xffffff&amp;amp;loader=0xcccccc&amp;amp;track=0xcccccc&amp;amp;border=0xcccccc&amp;amp;loop=no&amp;amp;autostart=no&amp;amp;soundFile=http://blog.5hoon.com/attach/1/4249610223.mp3&quot;&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;&lt;param name=&quot;menu&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/object&gt;&lt;br&gt;&lt;br&gt;옥주현&lt;br&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;/plugins/Penguin_player/mediaplayer.swf&quot; id=&quot;audioplayer1&quot; height=&quot;24&quot; width=&quot;290&quot;&gt;flash mp3 player object&lt;param name=&quot;movie&quot; value=&quot;/plugins/Penguin_player/mediaplayer.swf&quot;&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;playerID=1&amp;amp;bg=0xffffff&amp;amp;leftbg=0xcccccc&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0xffffff&amp;amp;lefticon=0xffffff&amp;amp;righticon=0xffffff&amp;amp;righticonhover=0xcccccc&amp;amp;text=0x000000&amp;amp;slide=0xffffff&amp;amp;loader=0xcccccc&amp;amp;track=0xcccccc&amp;amp;border=0xcccccc&amp;amp;loop=no&amp;amp;autostart=no&amp;amp;soundFile=http://blog.5hoon.com/attach/1/2848051021.mp3&quot;&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;&lt;param name=&quot;menu&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/object&gt;&lt;br&gt;&lt;br&gt;싸이 (feat. 이재훈)&lt;br&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;/plugins/Penguin_player/mediaplayer.swf&quot; id=&quot;audioplayer1&quot; height=&quot;24&quot; width=&quot;290&quot;&gt;flash mp3 player object&lt;param name=&quot;movie&quot; value=&quot;/plugins/Penguin_player/mediaplayer.swf&quot;&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;playerID=1&amp;amp;bg=0xffffff&amp;amp;leftbg=0xcccccc&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0xffffff&amp;amp;lefticon=0xffffff&amp;amp;righticon=0xffffff&amp;amp;righticonhover=0xcccccc&amp;amp;text=0x000000&amp;amp;slide=0xffffff&amp;amp;loader=0xcccccc&amp;amp;track=0xcccccc&amp;amp;border=0xcccccc&amp;amp;loop=no&amp;amp;autostart=no&amp;amp;soundFile=http://blog.5hoon.com/attach/1/4368257106.mp3&quot;&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;&lt;param name=&quot;menu&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/object&gt;&lt;br&gt;&lt;br&gt;태연&lt;br&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;/plugins/Penguin_player/mediaplayer.swf&quot; id=&quot;audioplayer1&quot; height=&quot;24&quot; width=&quot;290&quot;&gt;flash mp3 player object&lt;param name=&quot;movie&quot; value=&quot;/plugins/Penguin_player/mediaplayer.swf&quot;&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;playerID=1&amp;amp;bg=0xffffff&amp;amp;leftbg=0xcccccc&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0xffffff&amp;amp;lefticon=0xffffff&amp;amp;righticon=0xffffff&amp;amp;righticonhover=0xcccccc&amp;amp;text=0x000000&amp;amp;slide=0xffffff&amp;amp;loader=0xcccccc&amp;amp;track=0xcccccc&amp;amp;border=0xcccccc&amp;amp;loop=no&amp;amp;autostart=no&amp;amp;soundFile=http://blog.5hoon.com/attach/1/1059395523.mp3&quot;&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;&lt;param name=&quot;menu&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/object&gt;&lt;br&gt;&lt;br&gt;박혜경&lt;br&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;/plugins/Penguin_player/mediaplayer.swf&quot; id=&quot;audioplayer1&quot; height=&quot;24&quot; width=&quot;290&quot;&gt;flash mp3 player object&lt;param name=&quot;movie&quot; value=&quot;/plugins/Penguin_player/mediaplayer.swf&quot;&gt;&lt;param name=&quot;FlashVars&quot; value=&quot;playerID=1&amp;amp;bg=0xffffff&amp;amp;leftbg=0xcccccc&amp;amp;rightbg=0xcccccc&amp;amp;rightbghover=0xffffff&amp;amp;lefticon=0xffffff&amp;amp;righticon=0xffffff&amp;amp;righticonhover=0xcccccc&amp;amp;text=0x000000&amp;amp;slide=0xffffff&amp;amp;loader=0xcccccc&amp;amp;track=0xcccccc&amp;amp;border=0xcccccc&amp;amp;loop=no&amp;amp;autostart=no&amp;amp;soundFile=http://blog.5hoon.com/attach/1/7737220652.mp3&quot;&gt;&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;&lt;param name=&quot;menu&quot; value=&quot;false&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/object&gt;&lt;br&gt;&lt;br&gt;&lt;p id=&quot;more102_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;102_0&#039;,&#039; 가사보기 &#039;,&#039; 가사감추기 &#039;); return false;&quot;&gt; 가사보기 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content102_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;눈물이 흘러 이별인걸 알았어&lt;br&gt;힘없이 돌아서던 너의 뒷모습을 바라보며&lt;br&gt;나만큼 너도 슬프다는 걸 알아&lt;br&gt;하지만 견뎌야해 추억이 아름답도록&lt;br&gt;&amp;nbsp;&lt;br&gt;그 짧았던 만남도 슬픈 우리의 사랑도&lt;br&gt;이젠 눈물로 지워야 할 상처뿐인데&lt;br&gt;&amp;nbsp;&lt;br&gt;내맘 깊은 곳에 언제나 너를 남겨둘거야&lt;br&gt;슬픈 사랑은 너 하나로 내겐 충분하니까&lt;br&gt;하지만 시간은 추억속에&lt;br&gt;너를 잊으라며 모두 지워가지만&lt;br&gt;한동안 난 가끔 울것만 같아.&lt;br&gt;&amp;nbsp;&lt;br&gt;두 눈을 감고 지난날을 돌아봐&lt;br&gt;그속에 너와 나의 숨겨둔 사랑이 있어&lt;br&gt;언제나 나는 너의 마음속에서&lt;br&gt;느낄수 있을 거야 추억에 가려진채로&lt;br&gt;&amp;nbsp;&lt;br&gt;긴 이별은 나에게 널 잊으라 하지만&lt;br&gt;슬픈 사랑은 눈물속에 널 보고 있어&lt;br&gt;&amp;nbsp;&lt;br&gt;내맘 깊은 곳에 언제나 너를 남겨둘거야&lt;br&gt;슬픈 사랑은 너 하나로 내겐 충분하니까&lt;br&gt;하지만 시간은 추억속에&lt;br&gt;너를 잊으라며 모두 지워가지만&lt;br&gt;한동안 난 가끔 울것만 같아.&lt;br&gt;&amp;nbsp;&lt;br&gt;내맘 깊은 곳에 언제나 너를 남겨둘거야&lt;br&gt;슬픈 사랑은 너 하나로 내겐 충분하니까&lt;br&gt;하지만 시간은 추억속에&lt;br&gt;너를 잊으라며 모두 지워가지만&lt;br&gt;한동안 난 가끔 울것만 같아.&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/Music&quot;&gt;Music&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/103&quot;&gt;어이상실 방송 금지곡 모음..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/100&quot;&gt;김종국 - 어제보다 오늘 더 MV&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/93&quot;&gt;Yukie Nishimura - Letter//西村由紀江 - 手紙&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/87&quot;&gt;말할수 없는 비밀 - Secret, OST 듣기 &amp;amp; 악보&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/84&quot;&gt;김건모 사랑해 with 소녀시대&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>Music</category>
			<category>가요</category>
			<category>김건모</category>
			<category>리메이크</category>
			<category>박혜경</category>
			<category>싸이</category>
			<category>아름다운 이별</category>
			<category>옥주현</category>
			<category>이재훈</category>
			<category>태연</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/102</guid>
			<comments>http://blog.5hoon.com/102#entry102comment</comments>
			<pubDate>Fri, 07 Nov 2008 14:08:10 +0900</pubDate>
		</item>
		<item>
			<title>Obama Presidential Acceptance Speech + McCain Speech</title>
			<link>http://blog.5hoon.com/101</link>
			<description>어젯밤 결과가 미대선 결과가 나오고 난후 두 후보의 연설입니다.&lt;br&gt;&lt;br&gt;McCain - Phoenix&lt;br&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; width=&quot;596&quot; height=&quot;356&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;/&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot;/&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;/&gt;&lt;param name=&quot;flashvars&quot; value=&quot;width=596&amp;amp;height=356&amp;amp;thumbsinplaylist=true&amp;amp;displayheight=336&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f4905539446.flv|n_speech_mccain_081104.flv+%2837.07+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot;/&gt;&lt;!--[if !IE]&gt; &lt;--&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; transparent=&quot;yes&quot; data=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot; flashvars=&quot;thumbsinplaylist=true&amp;amp;displayheight=336&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f4905539446.flv|n_speech_mccain_081104.flv+%2837.07+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot; width=&quot;596&quot; height=&quot;356&quot;&gt;&lt;p&gt;&lt;a href=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;&gt;[Flash]&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;!--&gt; &lt;![endif]--&gt;&lt;/object&gt;&lt;br&gt;&lt;p id=&quot;more101_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;101_0&#039;,&#039; Transcript 보기 &#039;,&#039; Transcript 감추기 &#039;); return false;&quot;&gt; Transcript 보기 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content101_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;MCCAIN: Thank you. Thank you, my friends. Thank you for coming here on this beautiful Arizona evening.&lt;p&gt;My friends, we have — we have come to the end of a long journey. The American people have spoken, and they have spoken clearly.&lt;/p&gt;&lt;p&gt;A little while ago, I had the honor of calling Senator Barack Obama to congratulate him.&lt;/p&gt;&lt;p&gt;(BOOING)&lt;/p&gt;&lt;p&gt;Please.&lt;/p&gt;&lt;p&gt;To congratulate him on being elected the next president of the country that we both love.&lt;/p&gt;&lt;p&gt;In
a contest as long and difficult as this campaign has been, his success
alone commands my respect for his ability and perseverance. But that he
managed to do so by inspiring the hopes of so many millions of
Americans who had once wrongly believed that they had little at stake
or little influence in the election of an American president is
something I deeply admire and commend him for achieving.&lt;/p&gt;&lt;p&gt;This is
an historic election, and I recognize the special significance it has
for African-Americans and for the special pride that must be theirs
tonight.&lt;/p&gt;&lt;p&gt;I&#039;ve always believed that America offers opportunities
to all who have the industry and will to seize it. Senator Obama
believes that, too.&lt;/p&gt;&lt;p&gt;But we both recognize that, though we have
come a long way from the old injustices that once stained our nation&#039;s
reputation and denied some Americans the full blessings of American
citizenship, the memory of them still had the power to wound.&lt;/p&gt;&lt;p&gt;A
century ago, President Theodore Roosevelt&#039;s invitation of Booker T.
Washington to dine at the White House was taken as an outrage in many
quarters.&lt;/p&gt;&lt;p&gt;America today is a world away from the cruel and
frightful bigotry of that time. There is no better evidence of this
than the election of an African-American to the presidency of the
United States.&lt;/p&gt;&lt;p&gt;Let there be no reason now ... Let there be no
reason now for any American to fail to cherish their citizenship in
this, the greatest nation on Earth.&lt;/p&gt;&lt;p&gt;Senator Obama has achieved a
great thing for himself and for his country. I applaud him for it, and
offer him my sincere sympathy that his beloved grandmother did not live
to see this day. Though our faith assures us she is at rest in the
presence of her creator and so very proud of the good man she helped
raise.&lt;/p&gt;&lt;p&gt;Senator Obama and I have had and argued our differences, and he has prevailed. No doubt many of those differences remain.&lt;/p&gt;&lt;p&gt;These
are difficult times for our country. And I pledge to him tonight to do
all in my power to help him lead us through the many challenges we face.&lt;/p&gt;&lt;p&gt;I
urge all Americans ... I urge all Americans who supported me to join me
in not just congratulating him, but offering our next president our
good will and earnest effort to find ways to come together to find the
necessary compromises to bridge our differences and help restore our
prosperity, defend our security in a dangerous world, and leave our
children and grandchildren a stronger, better country than we inherited.&lt;/p&gt;&lt;p&gt;Whatever
our differences, we are fellow Americans. And please believe me when I
say no association has ever meant more to me than that.&lt;/p&gt;&lt;p&gt;It is
natural. It&#039;s natural, tonight, to feel some disappointment. But
tomorrow, we must move beyond it and work together to get our country
moving again.&lt;/p&gt;&lt;p&gt;We fought — we fought as hard as we could. And though we feel short, the failure is mine, not yours.&lt;/p&gt;&lt;p&gt;AUDIENCE: No!&lt;/p&gt;&lt;p&gt;MCCAIN: I am so...&lt;/p&gt;&lt;p&gt;AUDIENCE: (CHANTING)&lt;/p&gt;&lt;p&gt;MCCAIN:
I am so deeply grateful to all of you for the great honor of your
support and for all you have done for me. I wish the outcome had been
different, my friends.&lt;/p&gt;&lt;p&gt;AUDIENCE MEMBER: We do, too (OFF-MIKE)&lt;/p&gt;&lt;p&gt;MCCAIN:
The road was a difficult one from the outset, but your support and
friendship never wavered. I cannot adequately express how deeply
indebted I am to you.&lt;/p&gt;&lt;p&gt;I&#039;m especially grateful to my wife, Cindy,
my children, my dear mother ... my dear mother and all my family, and
to the many old and dear friends who have stood by my side through the
many ups and downs of this long campaign.&lt;/p&gt;&lt;p&gt;I have always been a fortunate man, and never more so for the love and encouragement you have given me.&lt;/p&gt;&lt;p&gt;You know, campaigns are often harder on a candidate&#039;s family than on the candidate, and that&#039;s been true in this campaign.&lt;/p&gt;&lt;p&gt;All I can offer in compensation is my love and gratitude and the promise of more peaceful years ahead.&lt;/p&gt;&lt;p&gt;I
am also — I am also, of course, very thankful to Governor Sarah Palin,
one of the best campaigners I&#039;ve ever seen ... one of the best
campaigners I have ever seen, and an impressive new voice in our party
for reform and the principles that have always been our greatest
strength ... her husband Todd and their five beautiful children ... for
their tireless dedication to our cause, and the courage and grace they
showed in the rough and tumble of a presidential campaign.&lt;/p&gt;&lt;p&gt;We can all look forward with great interest to her future service to Alaska, the Republican Party and our country.&lt;/p&gt;&lt;p&gt;To
all my campaign comrades, from Rick Davis and Steve Schmidt and Mark
Salter, to every last volunteer who fought so hard and valiantly, month
after month, in what at times seemed to be the most challenged campaign
in modern times, thank you so much. A lost election will never mean
more to me than the privilege of your faith and friendship.&lt;/p&gt;&lt;p&gt;I
don&#039;t know — I don&#039;t know what more we could have done to try to win
this election. I&#039;ll leave that to others to determine. Every candidate
makes mistakes, and I&#039;m sure I made my share of them. But I won&#039;t spend
a moment of the future regretting what might have been.&lt;/p&gt;&lt;p&gt;This
campaign was and will remain the great honor of my life, and my heart
is filled with nothing but gratitude for the experience and to the
American people for giving me a fair hearing before deciding that
Senator Obama and my old friend Senator Joe Biden should have the honor
of leading us for the next four years.&lt;/p&gt;&lt;p&gt;(BOOING)&lt;/p&gt;&lt;p&gt;Please. Please.&lt;/p&gt;&lt;p&gt;I
would not — I would not be an American worthy of the name should I
regret a fate that has allowed me the extraordinary privilege of
serving this country for a half a century.&lt;/p&gt;&lt;p&gt;Today, I was a
candidate for the highest office in the country I love so much. And
tonight, I remain her servant. That is blessing enough for anyone, and
I thank the people of Arizona for it.&lt;/p&gt;&lt;p&gt;AUDIENCE: USA. USA. USA. USA.&lt;/p&gt;&lt;p&gt;MCCAIN:
Tonight — tonight, more than any night, I hold in my heart nothing but
love for this country and for all its citizens, whether they supported
me or Senator Obama — whether they supported me or Senator Obama.&lt;/p&gt;&lt;p&gt;I
wish Godspeed to the man who was my former opponent and will be my
president. And I call on all Americans, as I have often in this
campaign, to not despair of our present difficulties, but to believe,
always, in the promise and greatness of America, because nothing is
inevitable here.&lt;/p&gt;&lt;p&gt;Americans never quit. We never surrender.&lt;/p&gt;&lt;p&gt;We never hide from history. We make history.&lt;/p&gt;&lt;p&gt;Thank you, and God bless you, and God bless America. Thank you all very much.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;Obama - Chicago&lt;br&gt;&lt;br&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; width=&quot;600&quot; height=&quot;366&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;/&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot;/&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;/&gt;&lt;param name=&quot;flashvars&quot; value=&quot;width=600&amp;amp;height=366&amp;amp;thumbsinplaylist=true&amp;amp;displayheight=346&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f2770609947.flv|obama_accept.flv+%2882.87+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot;/&gt;&lt;!--[if !IE]&gt; &lt;--&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; transparent=&quot;yes&quot; data=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot; flashvars=&quot;thumbsinplaylist=true&amp;amp;displayheight=346&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f2770609947.flv|obama_accept.flv+%2882.87+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot; width=&quot;600&quot; height=&quot;366&quot;&gt;&lt;p&gt;&lt;a href=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;&gt;[Flash]&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;!--&gt; &lt;![endif]--&gt;&lt;/object&gt;&lt;br&gt;&lt;p id=&quot;more101_1&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;101_1&#039;,&#039; Transcript 보기 &#039;,&#039; Transcript 감추기 &#039;); return false;&quot;&gt; Transcript 보기 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content101_1&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;OBAMA: Hello, Chicago.&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;If there
is anyone out there who still doubts that America is a place where all
things are possible, who still wonders if the dream of our founders is
alive in our time, who still questions the power of our democracy,
tonight is your answer.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;It&#039;s the
answer told by lines that stretched around schools and churches in
numbers this nation has never seen, by people who waited three hours
and four hours, many for the first time in their lives, because they
believed that this time must be different, that their voices could be
that difference.&lt;/p&gt;&lt;p&gt;It&#039;s the answer spoken by young and old,
rich and poor, Democrat and Republican, black, white, Hispanic, Asian,
Native American, gay, straight, disabled and not disabled. Americans
who sent a message to the world that we have never been just a
collection of individuals or a collection of red states and blue states.&lt;/p&gt;&lt;p&gt;OBAMA: We are, and always will be, the United States of America.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;It&#039;s
the answer that led those who&#039;ve been told for so long by so many to be
cynical and fearful and doubtful about what we can achieve to put their
hands on the arc of history and bend it once more toward the hope of a
better day.&lt;/p&gt;&lt;p&gt;It&#039;s been a long time coming, but tonight,
because of what we did on this date in this election at this defining
moment change has come to America.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt; It&#039;s
the answer that led those who&#039;ve been told for so long by so many to be
cynical and fearful and doubtful about what we can achieve to put their
hands on the arc of history and bend it once more toward the hope of a
better day.&lt;/p&gt;&lt;p&gt;It&#039;s been a long time coming, but tonight,
because of what we did on this date in this election at this defining
moment change has come to America.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;A little bit earlier this evening, I received an extraordinarily gracious call from Senator McCain.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;Senator
McCain fought long and hard in this campaign. And he&#039;s fought even
longer and harder for the country that he loves. He has endured
sacrifices for America that most of us cannot begin to imagine. We are
better off for the service rendered by this brave and selfless leader.&lt;/p&gt;&lt;p&gt;I
congratulate him; I congratulate Governor Palin for all that they&#039;ve
achieved. And I look forward to working with them to renew this
nation&#039;s promise in the months ahead.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;OBAMA:
I want to thank my partner in this journey, a man who campaigned from
his heart, and spoke for the men and women he grew up with on the
streets of Scranton...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... and rode with on the train home to Delaware, the vice president-elect of the United States, Joe Biden.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;And I would not be standing here tonight without the unyielding support of my best friend for the last 16 years...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... the rock of our family, the love of my life, the nation&#039;s next first lady...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... Michelle Obama.&lt;/p&gt;&lt;p&gt; (APPLAUSE)&lt;/p&gt;&lt;p&gt;Sasha and Malia...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... I love you both more than you can imagine. And you have earned the new puppy that&#039;s coming with us...&lt;/p&gt;&lt;p&gt;(LAUGHTER)&lt;/p&gt;&lt;p&gt;... to the new White House.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;And
while she&#039;s no longer with us, I know my grandmother&#039;s watching, along
with the family that made me who I am. I miss them tonight. I know that
my debt to them is beyond measure.&lt;/p&gt;&lt;p&gt;To my sister Maya, my
sister Alma, all my other brothers and sisters, thank you so much for
all the support that you&#039;ve given me. I am grateful to them.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;OBAMA: And to my campaign manager, David Plouffe...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;OBAMA:
... the unsung hero of this campaign, who built the best -- the best
political campaign, I think, in the history of the United States of
America.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;To my chief strategist David Axelrod...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... who&#039;s been a partner with me every step of the way.&lt;/p&gt;&lt;p&gt;To the best campaign team ever assembled in the history of politics...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... you made this happen, and I am forever grateful for what you&#039;ve sacrificed to get it done.&lt;/p&gt;&lt;p&gt;But above all, I will never forget who this victory truly belongs to. It belongs to you. It belongs to you. &lt;/p&gt;&lt;p&gt;
I was never the likeliest candidate for this office. We didn&#039;t start
with much money or many endorsements. Our campaign was not hatched in
the halls of Washington. It began in the backyards of Des Moines and
the living rooms of Concord and the front porches of Charleston. It was
built by working men and women who dug into what little savings they
had to give $5 and $10 and $20 to the cause.&lt;/p&gt;&lt;p&gt;It grew strength from the young people who rejected the myth of their generation&#039;s apathy...&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;... who left their homes and their families for jobs that offered little pay and less sleep.&lt;/p&gt;&lt;p&gt;It
drew strength from the not-so-young people who braved the bitter cold
and scorching heat to knock on doors of perfect strangers, and from the
millions of Americans who volunteered and organized and proved that
more than two centuries later a government of the people, by the
people, and for the people has not perished from the Earth.&lt;/p&gt;&lt;p&gt;This is your victory.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;OBAMA: And I know you didn&#039;t do this just to win an election. And I know you didn&#039;t do it for me.&lt;/p&gt;&lt;p&gt;You
did it because you understand the enormity of the task that lies ahead.
For even as we celebrate tonight, we know the challenges that tomorrow
will bring are the greatest of our lifetime -- two wars, a planet in
peril, the worst financial crisis in a century.&lt;/p&gt;&lt;p&gt;Even as we
stand here tonight, we know there are brave Americans waking up in the
deserts of Iraq and the mountains of Afghanistan to risk their lives
for us.&lt;/p&gt;&lt;p&gt;There are mothers and fathers who will lie awake
after the children fall asleep and wonder how they&#039;ll make the mortgage
or pay their doctors&#039; bills or save enough for their child&#039;s college
education. &lt;/p&gt;&lt;p&gt; There&#039;s new energy to harness, new jobs to be created, new schools to build, and threats to meet, alliances to repair.&lt;/p&gt;&lt;p&gt;The
road ahead will be long. Our climb will be steep. We may not get there
in one year or even in one term. But, America, I have never been more
hopeful than I am tonight that we will get there.&lt;/p&gt;&lt;p&gt;I promise you, we as a people will get there.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;AUDIENCE: Yes we can! Yes we can! Yes we can!&lt;/p&gt;&lt;p&gt;OBAMA:
There will be setbacks and false starts. There are many who won&#039;t agree
with every decision or policy I make as president. And we know the
government can&#039;t solve every problem.&lt;/p&gt;&lt;p&gt;But I will always be
honest with you about the challenges we face. I will listen to you,
especially when we disagree. And, above all, I will ask you to join in
the work of remaking this nation, the only way it&#039;s been done in
America for 221 years -- block by block, brick by brick, calloused hand
by calloused hand.&lt;/p&gt;&lt;p&gt;What began 21 months ago in the depths of winter cannot end on this autumn night.&lt;/p&gt;&lt;p&gt;
OBAMA: This victory alone is not the change we seek. It is only the
chance for us to make that change. And that cannot happen if we go back
to the way things were.&lt;/p&gt;&lt;p&gt;It can&#039;t happen without you, without a new spirit of service, a new spirit of sacrifice.&lt;/p&gt;&lt;p&gt;So
let us summon a new spirit of patriotism, of responsibility, where each
of us resolves to pitch in and work harder and look after not only
ourselves but each other.&lt;/p&gt;&lt;p&gt;Let us remember that, if this
financial crisis taught us anything, it&#039;s that we cannot have a
thriving Wall Street while Main Street suffers.&lt;/p&gt;&lt;p&gt;In this
country, we rise or fall as one nation, as one people. Let&#039;s resist the
temptation to fall back on the same partisanship and pettiness and
immaturity that has poisoned our politics for so long.&lt;/p&gt;&lt;p&gt;Let&#039;s
remember that it was a man from this state who first carried the banner
of the Republican Party to the White House, a party founded on the
values of self-reliance and individual liberty and national unity.&lt;/p&gt;&lt;p&gt;Those
are values that we all share. And while the Democratic Party has won a
great victory tonight, we do so with a measure of humility and
determination to heal the divides that have held back our progress.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;As
Lincoln said to a nation far more divided than ours, we are not enemies
but friends. Though passion may have strained, it must not break our
bonds of affection. &lt;/p&gt;&lt;p&gt; And to those Americans whose support I
have yet to earn, I may not have won your vote tonight, but I hear your
voices. I need your help. And I will be your president, too.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;OBAMA:
And to all those watching tonight from beyond our shores, from
parliaments and palaces, to those who are huddled around radios in the
forgotten corners of the world, our stories are singular, but our
destiny is shared, and a new dawn of American leadership is at hand.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;To
those -- to those who would tear the world down: We will defeat you. To
those who seek peace and security: We support you. And to all those who
have wondered if America&#039;s beacon still burns as bright: Tonight we
proved once more that the true strength of our nation comes not from
the might of our arms or the scale of our wealth, but from the enduring
power of our ideals: democracy, liberty, opportunity and unyielding
hope. (APPLAUSE)&lt;/p&gt;&lt;p&gt;That&#039;s the true genius of America: that
America can change. Our union can be perfected. What we&#039;ve already
achieved gives us hope for what we can and must achieve tomorrow.&lt;/p&gt;&lt;p&gt;This
election had many firsts and many stories that will be told for
generations. But one that&#039;s on my mind tonight&#039;s about a woman who cast
her ballot in Atlanta. She&#039;s a lot like the millions of others who
stood in line to make their voice heard in this election except for one
thing: Ann Nixon Cooper is 106 years old. &lt;/p&gt;&lt;p&gt; (APPLAUSE) OBAMA:
She was born just a generation past slavery; a time when there were no
cars on the road or planes in the sky; when someone like her couldn&#039;t
vote for two reasons -- because she was a woman and because of the
color of her skin. And tonight, I think about all that she&#039;s seen
throughout her century in America -- the heartache and the hope; the
struggle and the progress; the times we were told that we can&#039;t, and
the people who pressed on with that American creed: Yes we can. At a
time when women&#039;s voices were silenced and their hopes dismissed, she
lived to see them stand up and speak out and reach for the ballot. Yes
we can. When there was despair in the dust bowl and depression across
the land, she saw a nation conquer fear itself with a New Deal, new
jobs, a new sense of common purpose. Yes we can.&lt;/p&gt;&lt;p&gt;AUDIENCE:
Yes we can. OBAMA: When the bombs fell on our harbor and tyranny
threatened the world, she was there to witness a generation rise to
greatness and a democracy was saved. Yes we can.&lt;/p&gt;&lt;p&gt;AUDIENCE:
Yes we can. OBAMA: She was there for the buses in Montgomery, the hoses
in Birmingham, a bridge in Selma, and a preacher from Atlanta who told
a people that &quot;We Shall Overcome.&quot; Yes we can.&lt;/p&gt;&lt;p&gt;AUDIENCE:
Yes we can. OBAMA: A man touched down on the moon, a wall came down in
Berlin, a world was connected by our own science and imagination.&lt;/p&gt;&lt;p&gt;And
this year, in this election, she touched her finger to a screen, and
cast her vote, because after 106 years in America, through the best of
times and the darkest of hours, she knows how America can change.&lt;/p&gt;&lt;p&gt;Yes we can.&lt;/p&gt;&lt;p&gt;AUDIENCE:
Yes we can. OBAMA: America, we have come so far. We have seen so much.
But there is so much more to do. So tonight, let us ask ourselves -- if
our children should live to see the next century; if my daughters
should be so lucky to live as long as Ann Nixon Cooper, what change
will they see? What progress will we have made?&lt;/p&gt;&lt;p&gt;This is our chance to answer that call. This is our moment.&lt;/p&gt;&lt;p&gt;This
is our time, to put our people back to work and open doors of
opportunity for our kids; to restore prosperity and promote the cause
of peace; to reclaim the American dream and reaffirm that fundamental
truth, that, out of many, we are one; that while we breathe, we hope.
And where we are met with cynicism and doubts and those who tell us
that we can&#039;t, we will respond with that timeless creed that sums up
the spirit of a people: Yes, we can.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;p&gt;Thank you. God bless you. And may God bless the United States of America.&lt;/p&gt;&lt;p&gt;(APPLAUSE)&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;p id=&quot;more101_2&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;101_2&#039;,&#039;다운받기&#039;,&#039;다운받기&#039;); return false;&quot;&gt;다운받기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content101_2&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; 많은 요청에 의해 파일 링크를 올립니다.&lt;br&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a class=&quot;extensionIcon&quot; href=&quot;http://blog.5hoon.com/attachment/4905539446.flv&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/image/extension/unknown.gif&quot; alt=&quot;&quot; /&gt; n_speech_mccain_081104.flv&lt;/a&gt;&lt;p class=&quot;cap1&quot;&gt;John McCain - Concession&lt;/p&gt;&lt;/div&gt;&lt;br&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a class=&quot;extensionIcon&quot; href=&quot;http://blog.5hoon.com/attachment/2770609947.flv&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/image/extension/unknown.gif&quot; alt=&quot;&quot; /&gt; obama_accept.flv&lt;/a&gt;&lt;p class=&quot;cap1&quot;&gt;Barrack Obama Acceptance&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/연설&quot;&gt;연설&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/96&quot;&gt;Second Presidential Debate 10/8/08&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/94&quot;&gt;Vice Presidential Debate&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/92&quot;&gt;Michelle Obama 2008 DNC 연설&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/90&quot;&gt;2008 Presidential Debate&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/82&quot;&gt;오바마 2008 DNC 연설&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>연설</category>
			<category>Concession</category>
			<category>election</category>
			<category>McCain</category>
			<category>Obama</category>
			<category>President</category>
			<category>speech</category>
			<category>USA</category>
			<category>Video</category>
			<category>메케인</category>
			<category>미대선</category>
			<category>오바마</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/101</guid>
			<comments>http://blog.5hoon.com/101#entry101comment</comments>
			<pubDate>Thu, 06 Nov 2008 09:41:29 +0900</pubDate>
		</item>
		<item>
			<title>김종국 - 어제보다 오늘 더 MV</title>
			<link>http://blog.5hoon.com/100</link>
			<description>&lt;div style=&quot;text-align: center;&quot;&gt;김종국 5집 Here I Am 수록곡,&lt;br /&gt;youtube 에서 뮤비를 보다가 이렇게 가져왔다..&lt;br /&gt;&lt;br /&gt;&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0&quot; width=&quot;425&quot; height=&quot;340&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;/&gt;&lt;param name=&quot;allowfullscreen&quot; value=&quot;true&quot;/&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;/&gt;&lt;param name=&quot;flashvars&quot; value=&quot;width=425&amp;amp;height=340&amp;amp;thumbsinplaylist=true&amp;amp;displayheight=320&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f7986645107.flv|kjgtoday.flv+%2810.07+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot;/&gt;&lt;!--[if !IE]&gt; &lt;--&gt;&lt;object type=&quot;application/x-shockwave-flash&quot; transparent=&quot;yes&quot; data=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot; flashvars=&quot;thumbsinplaylist=true&amp;amp;displayheight=320&amp;amp;overstretch=true&amp;amp;logo=&amp;amp;searchbar=false&amp;amp;linkfromdisplay=true&amp;amp;linktarget=_blank&amp;amp;file=/plugins/GRZ_JWMediaPlayer/mkpl.php?list=1|%5bhttp%5dblog.5hoon.com%2fattach%2f1%2f7986645107.flv|kjgtoday.flv+%2810.07+MB%29|||||%5bhttp%5dblog.5hoon.com|&quot; width=&quot;425&quot; height=&quot;340&quot;&gt;&lt;p&gt;&lt;a href=&quot;/plugins/GRZ_JWMediaPlayer/mediaplayer.swf&quot;&gt;[Flash]&lt;/a&gt;&lt;/p&gt;&lt;/object&gt;&lt;!--&gt; &lt;![endif]--&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;p id=&quot;more100_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;100_0&#039;,&#039; 가사 보기 &#039;,&#039; 가사 감추기 &#039;); return false;&quot;&gt; 가사 보기 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content100_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;(I Do)영원히 단 한사람만 바라볼수있나요&lt;br /&gt;
(I Do)나 자신보다 아낄수 있나요&lt;br /&gt;
(I Do)그 누가 내게 물어도 대답할수있어요&lt;br /&gt;
(I Do)나의 사랑 그대죠..&lt;br /&gt;&lt;br /&gt;
약속하지 않을꺼에요&lt;br /&gt;
행여 잠시라도 흔들릴꺼라면&lt;br /&gt;
시작하지 않아요&lt;br /&gt;
심장보다 먼저 멈출 사랑이면&lt;br /&gt;&lt;br /&gt;
어제보다 오늘더 많이 사랑합니다&lt;br /&gt;
아프도록 소중한 사람 처음입니다&lt;br /&gt;
그댈 만나려고 이렇게 행복하려고&lt;br /&gt;
많이도 아팠나 봅니다&lt;br /&gt;
&lt;br /&gt;
힘든 날도 있을거에요&lt;br /&gt;
눈물 멎지않는 그 어떤 아픔도&lt;br /&gt;
언젠가는 끝나죠&lt;br /&gt;
끝이 없는것은 우리의 사랑뿐&lt;br /&gt;&lt;br /&gt;
어제보다 오늘더 많이 사랑합니다&lt;br /&gt;
아프도록 소중한 사람 처음입니다&lt;br /&gt;
그댈 만나려고 이렇게 행복하려고&lt;br /&gt;
많이도 아팠나 봅니다.&lt;br /&gt;&lt;br /&gt;
두번 다시는 하고 싶지 않아요 헤어지는 일&lt;br /&gt;
그댈 만나길 위한 헤어짐 아니라면&lt;br /&gt;
언제까지나&lt;br /&gt;&lt;br /&gt;
벅차오는 가슴이 터질것만 같아서&lt;br /&gt;
내 눈앞에 그대가 꿈인것만 같아서&lt;br /&gt;
달려가 숨쉬는 그대를 품에 안아야&lt;br /&gt;
마음을 놓는 바봅니다&lt;br /&gt;&lt;br /&gt;
어제보다 오늘더 많이 사랑합니다&lt;br /&gt;
아프도록 소중한 사람 처음입니다&lt;br /&gt;
그댈 만나려고 이렇게 행복하려고&lt;br /&gt;
많이도 아팠나 봅니다&lt;/div&gt; &lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;
도중에 나오는 바이올린...&lt;br /&gt;악보 구해서 연주해보고 싶다... =ㅁ=&lt;br /&gt;
지금보니.. 100번째 포스팅 ^^;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/Music&quot;&gt;Music&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/103&quot;&gt;어이상실 방송 금지곡 모음..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/102&quot;&gt;아름다운 이별&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/93&quot;&gt;Yukie Nishimura - Letter//西村由紀江 - 手紙&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/87&quot;&gt;말할수 없는 비밀 - Secret, OST 듣기 &amp;amp; 악보&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/84&quot;&gt;김건모 사랑해 with 소녀시대&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>Music</category>
			<category>5집</category>
			<category>Here I am</category>
			<category>김종국</category>
			<category>뮤비</category>
			<category>어제보다 오늘 더</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/100</guid>
			<comments>http://blog.5hoon.com/100#entry100comment</comments>
			<pubDate>Thu, 30 Oct 2008 07:15:38 +0900</pubDate>
		</item>
		<item>
			<title>미분에 관련된 증명 한문제</title>
			<link>http://blog.5hoon.com/99</link>
			<description>문제 : 점 P는 y=x³ 위에 한 점이다. 점P의 접선에서 그은 직선이 그래프와 점 Q 에서 만날때, 점Q 의 접선의 기울기가 점P 의 접선의 기울기의 4배임을 보여라.&lt;br&gt;&lt;p id=&quot;more99_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;99_0&#039;,&#039;풀이 보기&#039;,&#039;풀이 감추기&#039;); return false;&quot;&gt;풀이 보기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content99_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;우선 점 P(p,p³), Q(q,q³) 로 나타낸다.&lt;br&gt;y&#039; = 3x² 이므로 각각의 기울기는&lt;br&gt;&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=m_p%3D3p%5E2&quot;&gt;, &lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=m_q%3D3q%5E2&quot;&gt;&lt;br&gt;임을 알수 있다.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;여기서 증명 하려는것은 &lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=m_q%3D4m_p&quot;&gt;&lt;br&gt;이므로,&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=3q%5E2%3D4%5Ctimes3p%5E2%5C%5C%0Aq%5E2%3D4p%5E2&quot;&gt;--------------------(*)&lt;br&gt;임을 보여주면 된다.&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;점 P 접선의 방정식은&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y-y_0%3Dm%28x-x_0%29%5C%5Cy-p%5E3%3D3p%5E2%28x-p%29&quot;&gt;&lt;br&gt;그리고 점 Q를 지나므로&lt;br&gt;&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=q%5E3-p%5E3%3D3p%5E2%28q-p%29&quot;&gt;&lt;br&gt;으로 나타낼수 있다.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;식을 정리하면..&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=%28q-p%29%28q%5E2%2Bqp%2Bp%5E2%29%3D3p%5E2%28q-p%29%5C%5C%0A%28q-p%29%28q%5E2%2Bqp%2Bp%5E2%29-3p%5E2%28q-p%29%3D0%5C%5C%0A%28q-p%29%28q%5E2%2Bqp%2Bp%5E2-3p%5E2%29%3D0&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;여기서 점P 와 점Q 는 서로 다른 점이기에 q≠p&lt;br&gt;즉,&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=q%5E2%2Bqp%2Bp%5E2-3p%5E2%3D0%5C%5C%0Aq%5E2%2Bqp-2p%5E2%3D0%5C%5C%0A%28q-p%29%28q%2B2p%29%3D0&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;또 다시 q≠p 이기에,&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=q%2B2p%3D0%5C%5C%0Aq%3D-2p&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;양변을 제곱하여도 등식은 성립하기에&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=q%5E2%3D4p%5E2&quot;&gt;&lt;br&gt;따라서 (*) 에서 보여준 조건을 보여주었다.&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/수학&quot;&gt;수학&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/105&quot;&gt;간단한 수학 퍼즐 문제 하나..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/104&quot;&gt;수학문제 하나..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/98&quot;&gt;타원과 관련된 미분 한문제&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/95&quot;&gt;LaTeX 수식 작성하기&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/49&quot;&gt;수학 문제 -0-&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>수학</category>
			<category>미분</category>
			<category>수학</category>
			<category>증명</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/99</guid>
			<comments>http://blog.5hoon.com/99#entry99comment</comments>
			<pubDate>Wed, 29 Oct 2008 04:04:54 +0900</pubDate>
		</item>
		<item>
			<title>타원과 관련된 미분 한문제</title>
			<link>http://blog.5hoon.com/98</link>
			<description>어쩌다가 풀게된 수학 문제..&lt;br&gt;&lt;br&gt;1.&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=%5Cfrac%7Bx%5E2%7D%7B4%7D%2By%5E2%3D1&quot;&gt; &lt;br&gt;의 타원위에 점P를 접하고 점 Q(4,0) 를 지나는 접선의 방정식을 구하여라..&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://blog.5hoon.com/attach/1/8337086305.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;175&quot; width=&quot;360&quot; /&gt;&lt;/div&gt;&lt;br&gt;&lt;p id=&quot;more98_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;98_0&#039;,&#039;풀이 보기&#039;,&#039;풀이 감추기&#039;); return false;&quot;&gt;풀이 보기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content98_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;타원식을 정리하면&lt;br&gt;&amp;nbsp;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y%5E2%20%3D%201-%5Cfrac%7Bx%5E2%7D%7B4%7D%5C%5C%0Ay%20%3D%20%5Cpm%20sqrt%7B1-%5Cfrac%7Bx%5E2%7D%7B4%7D%7D&quot;&gt;&lt;br&gt;&lt;br&gt;점 P 는 위부분에 있으니..&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y%3D%5Csqrt%7B1-%5Cfrac%7Bx%5E2%7D%7B4%7D%7D&quot;&gt;&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y%3D%5Cfrac%7B%5Csqrt%7B4-x%5E2%7D%7D%7B2%7D&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;그럼 점 P 는&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=P%28p%2C%5Cfrac%7B%5Csqrt%7B4-p%5E2%7D%7D%7B2%7D%29&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;타원의 접선의 기울기는&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y%5Cprime%3D%5Cfrac%7B-x%7D%7B2%5Csqrt%7B4-x%5E2%7D%7D&quot;&gt;&lt;br&gt;점 p 일때이니..&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=m%3D-%5Cfrac%7Bp%7D%7B2%5Csqrt%7B4-p%5E2%7D%7D&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(255, 218, 237);&quot;&gt;직선의 방정식은&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y-y_0%20%3D%20m%28x-x_0%29&quot;&gt;&lt;br&gt;으로 나타낼수 있다.&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;고로,&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y-%5Cfrac%7B%5Csqrt%7B4-p%5E2%7D%7D%7B2%7D%20%3D%20-%5Cfrac%7Bp%7D%7B2%5Csqrt%7B4-p%5E2%7D%7D%28x-p%29%5C%5C&quot;&gt; -----------------(*)&lt;br&gt;또한 점 Q(4,0)을 지나니, 직선의 방정식은,&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=-%5Cfrac%7B%5Csqrt%7B4-p%5E2%7D%7D%7B2%7D%20%3D%20-%5Cfrac%7Bp%7D%7B2%5Csqrt%7B4-p%5E2%7D%7D%284-p%29&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(208, 255, 157);&quot;&gt;풀면,&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=%5Cfrac%7B%5Csqrt%7B4-p%5E2%7D%7D%7B2%7D%20%3D%20%5Cfrac%7B4p-p%5E2%7D%7B2%5Csqrt%7B4-p%5E2%7D%7D%5C%5C%0A4-p%5E2%20%3D%204p-p%5E2%5C%5C%0A4p%3D4%5C%5C%0A%5Ctherefore%20p%20%3D1%5C%5C%0A%5Ctherefore%20P%281%2C%5Cfrac%7Bsqrt%7B3%7D%7D%7B2%7D%29&quot;&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;직선의 방정식(*)에 다시 대입하면&lt;br&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y%20-%20%5Cfrac%7B%5Csqrt%7B3%7D%7D%7B2%7D%3D-%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7D%28x-1%29%5C%5C%0Ay%20%3D%20-%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7Dx%20%2B%20%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7D%2B%5Cfrac%7B%5Csqrt%7B3%7D%7D%7B2%7D%5C%5C%0Ay%20%3D%20-%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7Dx%20%2B%20%5Cfrac%7B2%7D%7B%5Csqrt%7B3%7D%7D&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;무진장 간단한(?) 풀이 -_-;&lt;p id=&quot;more98_1&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;98_1&#039;,&#039; 풀이 보기 &#039;,&#039; 풀이 감추기 &#039;); return false;&quot;&gt; 풀이 보기 &lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content98_1&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt; &lt;div style=&quot;padding: 10px; background-color: rgb(201, 237, 255);&quot;&gt;&lt;img src=&quot;http://5hoon.com/latex/mimetex.cgi?formdata=y%3Dmx%5Cpm%5Csqrt%7Ba%5E2m%5E2%2Bb%5E2%7D%5C%5C%0Ay%3Dmx%5Cpm%5Csqrt%7B4m%5E2%2B1%7D%5C%5C%0A0%3D4m%5Cpm%5Csqrt%7B4m%5E2%2B1%7D%5C%5C%0A16m%5E2-4m%5E2%2B1%3D0%5C%5C%0Am%3D-%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7D%5C%5C%0A%5Ctherefore%20y%3D-%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7D%28x-4%29%5C%5C%0Ay%3D-%5Cfrac%7B1%7D%7B2%5Csqrt%7B3%7D%7Dx%2B%5Cfrac%7B2%7D%7B%5Csqrt%7B3%7D%7D&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이센스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-nd/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; target=_blank&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;&lt;div class=&quot;scposts&quot;&gt;
&lt;h4&gt;&quot;&lt;a href=&quot;http://blog.5hoon.com/category/수학&quot;&gt;수학&lt;/a&gt;&quot; 분류의 다른 글&lt;/h4&gt;
&lt;table&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/105&quot;&gt;간단한 수학 퍼즐 문제 하나..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/104&quot;&gt;수학문제 하나..&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/99&quot;&gt;미분에 관련된 증명 한문제&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/95&quot;&gt;LaTeX 수식 작성하기&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://blog.5hoon.com/49&quot;&gt;수학 문제 -0-&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;</description>
			<category>수학</category>
			<category>미분</category>
			<category>방정식</category>
			<category>수학</category>
			<category>접선</category>
			<category>직선</category>
			<category>타원</category>
			<author>(5hoon)</author>
			<guid>http://blog.5hoon.com/98</guid>
			<comments>http://blog.5hoon.com/98#entry98comment</comments>
			<pubDate>Tue, 28 Oct 2008 18:07:09 +0900</pubDate>
		</item>
	</channel>
</rss>
