File size: 44,198 Bytes
47a79b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 |
1
00:00:21,290 --> 00:00:23,870
Okay ุจุณู
ุงููู ุงูุฑุญู
ู ุงูุฑุญูู
ุงูููู
ุฅู ุดุงุก ุงููู
2
00:00:23,870 --> 00:00:27,490
ุณููู
ู ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
3
00:00:27,490 --> 00:00:27,870
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
4
00:00:27,870 --> 00:00:28,310
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
5
00:00:28,310 --> 00:00:28,930
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
6
00:00:28,930 --> 00:00:30,610
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
7
00:00:30,610 --> 00:00:30,690
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
8
00:00:30,690 --> 00:00:32,130
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
9
00:00:32,130 --> 00:00:32,130
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
10
00:00:32,130 --> 00:00:39,710
ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ ุนู
ููุฉ
11
00:00:46,290 --> 00:00:55,290
ุฃุณููุจ ูููู ุงููู ูุธูุฑ ุนูุงูุฉ ูููู ุจูู R ูY ูุฐู ูู
12
00:00:55,290 --> 00:01:06,190
ุญุฑูุฉ IS ุตุญูุญุ ูุญุฑูุฉ LM ูุฏููุง ุณููุจ ูููู ุงููู ูุธูุฑ
13
00:01:06,190 --> 00:01:17,340
ุนูุงูุฉ ูููู ุจูู Y ูR ููุฐู LMIS ู
ุฑุชุจุท ุจู Goods and
14
00:01:17,340 --> 00:01:23,660
Services Marketุ ููู ูุธูุฑ ุงูุงูุชุฌุงุฑุงุช ุงูู
ุฎุชููุฉ ูู
15
00:01:23,660 --> 00:01:30,100
Goods and Services Market LM ู
ุฑุชุจุท ุจุงูุงูุชุฌุงุฑุงุช
16
00:01:30,100 --> 00:01:37,310
ุงูู
ุฎุชููุฉ ูู Money Marketุจุงูุทุจุน ูู ุงูุจูุฏ ูุญู ูุฏููุง
17
00:01:37,310 --> 00:01:42,890
ููุท ุงููุงููุจุฑูุงู
ูุงุญุฏ ู ุงููุงููุจุฑูุงู
ูุงุญุฏ ู
18
00:01:42,890 --> 00:01:45,630
ุงูุชุฑุณุชุฑูุช ูุงุญุฏ ุงุฐุง ููุช ุจุชุญูู ูู ุฏูู ูุงุญุฏุฉ ุงููุฏ ูู
19
00:01:45,630 --> 00:01:49,170
ุนูุฏู ูุงุชุฌ ุชูุงุฒู ูุงุญุฏ ู ุงูุชุฑุณุชุฑูุช ูุงุญุฏ ุงููุงููุจุฑูุงู
20
00:01:49,170 --> 00:01:50,110
ูุงุญุฏ
21
00:01:54,580 --> 00:02:00,180
ูุฐู ุงูุงูุชุฌุงุฑุงุช ูู ูุงุญุฏ ุฏูุงุบุฑุงู
ุงู ูุงุญุฏ ุตูุฑุฉ ููู
22
00:02:00,180 --> 00:02:04,280
ูุญุตู ุนูู ุงููุงููุจุฑูุงู
ุงูุงูุชุฌุงุฑุงุช ู ุงููุงููุจุฑูุงู
23
00:02:04,280 --> 00:02:08,820
ุงูุงูุชุฌุงุฑุงุช ูุญุตู
24
00:02:08,820 --> 00:02:13,000
ุนูู ุงููุงููุจุฑูุงู
ุงูุงูุชุฌุงุฑุงุช ู ุงููุงููุจุฑูุงู
25
00:02:13,000 --> 00:02:14,760
ุงูุงูุชุฌุงุฑุงุช
26
00:02:20,690 --> 00:02:29,750
ุงูุงูุชุตุงุฑ ุงูุฅููุงููุจุฑููู
ูุงูุฅููุงููุจุฑููู
ุงุนุชูุฏ ุงู ูุฐุง
27
00:02:29,750 --> 00:02:37,130
LM ุงูู ูู ุงูุงูุชุตุงุฑ ุงูุฅููุงููุจุฑููู
ุงูุงูุชุตุงุฑ
28
00:02:37,130 --> 00:02:43,150
ุงูุฅููุงููุจุฑููู
ูุนู
ุจุงูุถุจุท ุนูุฏู
ุง ูููู ููุงู ุงูุชุตุงุฑ
29
00:02:43,150 --> 00:02:48,230
ุจูู IS ู LM ููุฐุง ูู ุงูุงูุชุตุงุฑ ุงูุฅููุงููุจุฑููู
30
00:02:52,900 --> 00:02:58,800
ุงุนุชุจุงุฑ ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
31
00:02:58,800 --> 00:03:01,380
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
32
00:03:01,380 --> 00:03:05,060
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
33
00:03:07,090 --> 00:03:10,810
ู
ุซููุงุ ุฅุฐุง ูู
ูุง ุจุงูุดูุช ูู ุงูู LM ุฃู ุงูู IS ุฃู ุงูู
34
00:03:10,810 --> 00:03:14,150
IS ุฃู ุงูู LMุ ููู ุณูุคุซุฑ ุนูู ุงูู Interest Rate
35
00:03:14,150 --> 00:03:16,850
ูุงูุชูุงุฒู ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
36
00:03:16,850 --> 00:03:16,910
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
37
00:03:16,910 --> 00:03:17,070
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
38
00:03:17,070 --> 00:03:17,230
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
39
00:03:17,230 --> 00:03:17,730
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
40
00:03:17,730 --> 00:03:18,790
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
41
00:03:18,790 --> 00:03:24,590
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
ูุงูุฅููุงููุจุฑุงู
42
00:03:24,590 --> 00:03:26,950
ูุงูุฅููุงูู
43
00:03:27,880 --> 00:03:32,240
What are the main factors or the variables affect
44
00:03:32,240 --> 00:03:36,760
IS to shift the rightุ ุฎููููุง ูุดูู ุดู ุงูุนูุงู
ู
45
00:03:36,760 --> 00:03:40,140
ุงูุชุฃุซุฑุฉ ุนูู ุงู IS ุจุชุฎููู ูุฑูุญ ููู
ูู ุฃู ูุดู
ุงู ุดูููุง
46
00:03:40,140 --> 00:03:45,960
ุงู expansionary ุฎููููุง ูุญูู ูู ุงู IS the factors
47
00:03:45,960 --> 00:03:55,240
affect the IS ูู ISุงููู ุจุฃุซุฑ ุนููู ุงู fiscal policy
48
00:03:55,240 --> 00:03:58,540
because it's related to the goods market ุงู IS
49
00:03:58,540 --> 00:04:09,280
ุงููู ุจุฃุซุฑ ุนููู ุงููู ูู ุงู fiscal policy ุฅุฐุง
50
00:04:09,280 --> 00:04:16,920
ุงุณุชุฎุฏู
ูุง if the government use expansionary fiscal
51
00:04:19,010 --> 00:04:22,610
ููู ุจุชูุฏู right word shifting ูุฐุง ุจูุนู
ู ุงู
52
00:04:22,610 --> 00:04:26,370
expansion fiscal policy ุจุชุนู
ู right word shifting
53
00:04:26,370 --> 00:04:34,990
to the IS ูุฐุง ุจูุนู
ู right word shifting in IS
54
00:04:37,460 --> 00:04:43,080
ูู ุงุณุชุฎุฏู
ูุง contractionary fiscal policy ุชุนู
ู
55
00:04:43,080 --> 00:04:47,260
liftward shifting ูู IS ุฅุฐุง ุงู IS ุดู ุงููู ุจุฃุซุฑ ููู
56
00:04:47,260 --> 00:04:54,900
ุงู fiscal policyุ so the contractionary fiscal
57
00:04:54,900 --> 00:05:02,480
ุชุนู
ู ูู ุงู IS to the lift liftward shifting ูู
ููุ
58
00:05:02,480 --> 00:05:11,420
ูู IS ุทุจ ุงู LMุงูู M ูู Monetary ุฃุตูุงู So The
59
00:05:11,420 --> 00:05:15,180
expansionary monetary policy ุจุชุนู
ู ุงูุดุ Rightward
60
00:05:15,180 --> 00:05:20,300
shifting ููู M ุชู
ุงู
ุ
61
00:05:20,300 --> 00:05:28,940
ุงู M ุฅุฐุง ูู ุนูุฏู expansionary Monetary
62
00:05:28,940 --> 00:05:36,140
ุดู ุจุชุนู
ูุ Rightward ูู ุงู M
63
00:05:39,780 --> 00:05:43,320
ุจู
ุนูู suppose ุงู ุงู money supply increased ูุนูู
64
00:05:43,320 --> 00:05:47,080
suppose ูุงู ุงู increasing ูู ุงู money supply ุจุชุนู
ู
65
00:05:47,080 --> 00:05:53,660
increasing ุงู rightward shifting ูู ุงู LM ูุฐุง
66
00:05:53,660 --> 00:05:57,380
increasing money supply is an expansionary
67
00:05:57,380 --> 00:06:02,860
monetary policy ุตุญุ ุทุจ ูุงู ุงู contractionary
68
00:06:02,860 --> 00:06:08,500
monetary ุจุชุนู
ู LM to the left
69
00:06:11,480 --> 00:06:18,280
ุทุจุนุงู ุ ูุฐูู ูู
ุง ุฐูุฑูุง ุฃู ุญุฑูุฉ IS ู
ุณุชุฎุฏู
ุฉ ูู
ุงุฐุงุ
70
00:06:18,280 --> 00:06:23,060
ูุฎุตูุตูุฉ ุงูููุฒูุงุก ู LM ู
ุณุชุฎุฏู
ุฉ ุฃู ู
ุฑุชุจุทุฉ ุจุฎุตูุตูุฉ
71
00:06:23,060 --> 00:06:29,200
ุงูู
ุญุงูุธุฉ ุฅุฐุง ููุง ุฃู ุงูุญููู
ุฉ ุงุณุชุฎุฏู
ุช ุฎุตูุตูุฉ
72
00:06:29,200 --> 00:06:36,000
ุงูููุฒูุงุก ุจุงุณุชุฎุฏุงู
ุฅุฒุงูุฉ ุงุณุชุฎุฏุงู
ุงูุญููู
ุฉ IS ุณุชุฐูุจ
73
00:06:36,000 --> 00:06:36,460
ุฅูู ุงููุณุงุฑ
74
00:06:41,240 --> 00:06:45,520
ููู ุงูููุงู
ุฉ ุงูุชุฌุงุฑูุฉ ุฃู ุงูู fiscal policy ูุฏ ุชุชูู
75
00:06:45,520 --> 00:06:50,460
ููู
ุงูุญููู
ุฉ ุฃู ุชุฒูุฏ ุงูู
ุฌุงูุงุช ูุฐุง ูุคุฏู ุฅูู ุชุบููุฑ
76
00:06:50,460 --> 00:06:58,920
ุงูู LFTWARE ูู IS CURVE ูุงุถุญุฉุ ุชู
ุงู
ุ ุฎููููู ูุดูู
77
00:06:58,920 --> 00:07:05,520
ุงู applications ู ุงูุชุทุจููุงุช ุนูู ุงูุชุบููุฑ ูู IS OR
78
00:07:05,520 --> 00:07:11,590
LM ุชู
ุงู
ุSo far is it clearุ ูุงุถุญ ุงูุฃู
ูุฑุ ูุนูู ุงู
79
00:07:11,590 --> 00:07:16,090
IS is sensitive ูู
ููุ ูู fiscal policyุ ุงู
80
00:07:16,090 --> 00:07:18,830
government spending ุฅุฐุง ูู ุฒูุฏูุง if the government
81
00:07:18,830 --> 00:07:22,730
increased or used expansionary fiscal policy ุงู IS
82
00:07:22,730 --> 00:07:26,030
will shift to the right ุงู contraction ูู ุงู
83
00:07:26,030 --> 00:07:30,830
fiscal ููุณ leftward shifting ูู ุงู IS ุชู
ุงู
ุ ูุนูู
84
00:07:30,830 --> 00:07:36,440
ูุงู ูููุุงูู Expansion fiscal policy ุดู ุจุชุนู
ู ISPG
85
00:07:36,440 --> 00:07:41,640
left to the right to IS2 ูู
ู ุซู
ูุฐุง leads to
86
00:07:41,640 --> 00:07:48,560
increasing ูู ุงู R and increasing Y ููุงููุด
87
00:07:48,560 --> 00:07:53,000
expansionary fiscal policy ุชู
ุงู
ุ ููุดูู ูุญูู
88
00:07:53,000 --> 00:07:57,020
ุงูุณูุงุณุงุช ูููุง ุดูู ุดูู step by step ุงู ุดุงุก ุงููู ุทุจ
89
00:07:57,020 --> 00:08:03,960
ูู ุฃุฌููุง ูExpansion Monetary Policy It affects all
90
00:08:03,960 --> 00:08:08,680
the money's LM ูุจุงูุชุงูู ุจุชุนู
ู Rightward shifting ู
91
00:08:08,680 --> 00:08:12,940
LM ูุชูุฌู ููุง Interest rate would decline ู ุงู Y
92
00:08:12,940 --> 00:08:16,800
would increase ุจุณ ูููุฌู ุดููู ุดููู ูุงู gate step by
93
00:08:16,800 --> 00:08:25,100
step ุชู
ุงู
ุ ุทูุจ ุฌููู
94
00:08:25,100 --> 00:08:27,280
ูุงู gate ูุนูู ุจุชุญููู ุฃูุณุน ุงู ุดุงุก ุงููู
95
00:08:45,570 --> 00:08:50,170
ุญุณููุง ุ ูุจู ุฃู ูุฐูุจ ุฅูู ุงุณุชุฎุฏุงู
ุงุชูุงู ุงุชูุงู ุงุชูุงู
96
00:08:50,170 --> 00:08:51,570
ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู
97
00:08:51,570 --> 00:08:57,510
ุงุชูุงู ุงุชูุงู ุงุชูุงู
98
00:08:57,510 --> 00:09:00,710
ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู
99
00:09:00,710 --> 00:09:01,430
ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู
100
00:09:01,430 --> 00:09:01,430
ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุชูุงู
101
00:09:01,430 --> 00:09:15,130
ุงุชูุงู ุงุชูุงู ุงุชูุงู ุงุช
102
00:09:15,660 --> 00:09:22,280
GDP equals C plus I plus G plus X minus N
103
00:09:22,280 --> 00:09:26,600
Increasing
104
00:09:26,600 --> 00:09:30,460
ูู Cุ ุดู ุจุชุฑุง ูู GDPุ Increased GDP ูู ุงู Yุ
105
00:09:30,460 --> 00:09:34,140
aggregate outputุ ู
ุธุจูุท Increasing in I leads to
106
00:09:34,140 --> 00:09:38,040
increasing GDP or increasing Y Increasing in G,
107
00:09:38,560 --> 00:09:40,480
the government spending leads to increasing Y
108
00:09:40,480 --> 00:09:45,040
Increasing the exports also leads to increasing Y
109
00:09:46,390 --> 00:09:51,010
increasing in imports leads to a decreasing in y
110
00:09:51,010 --> 00:09:58,030
ุชู
ุงู
ุ ุทูุจ let's begin with using an expansionary
111
00:09:58,030 --> 00:10:02,310
fiscal policy and then to analyze its relation
112
00:10:02,310 --> 00:10:10,050
with relationship with the IS ุชู
ุงู
ุ yes exactly
113
00:10:10,050 --> 00:10:16,320
ูุฃู ูุฐุง minus ุฃุตูุง ูุจุชุงูู V inverseุจุตุจูุท ุทูุจ
114
00:10:16,320 --> 00:10:22,740
suppose that the government used an expansionary
115
00:10:22,740 --> 00:10:26,640
fiscal policy expansionary fiscal policy by using
116
00:10:26,640 --> 00:10:30,820
or increasing the government spending increasing
117
00:10:30,820 --> 00:10:34,400
government spending ุดู ุจูุนู
ู leads to increasing
118
00:10:34,400 --> 00:10:39,020
aggregate expenditures ุจุตุจูุท ูุฐุง ุดู ุจูุนู
ู ูู ุงู
119
00:10:39,020 --> 00:10:43,760
aggregate output increasing aggregate output
120
00:10:47,060 --> 00:10:50,680
ุงูู money demand ุดูู ุฏู ูุตูุฑ ููู increased exactly
121
00:10:50,680 --> 00:10:57,540
and the interest rate would decline ุฎูุงุต
122
00:10:57,540 --> 00:11:02,240
ู
ููู ูุงู so what do you see increasing y
123
00:11:02,240 --> 00:11:07,060
decreasing r this is the expansion of fiscal
124
00:11:07,060 --> 00:11:09,540
policy ูุฐุง expansionary
125
00:11:12,430 --> 00:11:16,010
Expansion Fiscal Policy ู
ุด ูุฐู ุณูุงุณุฉ ู
ุงููุฉ ุชูุณุนูุฉุ
126
00:11:16,010 --> 00:11:19,890
ุดู ุจุชุนู
ู ูู ุงููIS ููููุง Expansion Fiscal Policy
127
00:11:19,890 --> 00:11:24,590
Rightward Shifting ูู ุงููIS ููุฐู Expansion Fiscal
128
00:11:24,590 --> 00:11:29,730
Policy ุนู
ูุช Rightward Shifting ูู ุงููIS curve
129
00:11:29,730 --> 00:11:38,690
ุฎูููุง ูุนู
ู ุงู diagram Y
130
00:11:38,690 --> 00:11:47,630
Rููุฐุง ูู IS LM
131
00:11:47,630 --> 00:11:54,030
ููุฐุง ูู ููุทุฉ
132
00:11:54,030 --> 00:12:06,460
ุงูุชูุงุฒู ุงูุฑุฆูุณูุฉ A1 R1 Y1 ููุฐุง ูู IS1ุทุจุนุง as we
133
00:12:06,460 --> 00:12:08,900
mentioned that the using of expansion fiscal
134
00:12:08,900 --> 00:12:13,800
policy leads to a rightward shifting in the IS
135
00:12:13,800 --> 00:12:24,360
curve so we will shift the IS to this is E2 ุดู
136
00:12:24,360 --> 00:12:27,620
ุงููู ุตุงุฑ ูู ุงู interest rate exactly increased and
137
00:12:27,620 --> 00:12:28,420
whyุ
138
00:12:38,830 --> 00:12:43,330
sorry ููุง ุงู money demand increased R ุจุธุจุท ุงู
139
00:12:43,330 --> 00:12:46,890
increasing ูู ุงู money demand ู
ุงุนููู
ู
ุด ู
ุฑูุฒูู ุงู
140
00:12:46,890 --> 00:12:50,930
increasing ูู ุงู money demand ุจูุฒูุฏ ุงู R ุจุธุจุท ูุงู
141
00:12:50,930 --> 00:12:58,670
ุงุนู
ู ุฑุณู
ูุง ููู ุงู money supply this is money
142
00:12:58,670 --> 00:13:05,230
demand one E one R one ุงู increasing ูู ุงู money
143
00:13:05,230 --> 00:13:09,460
demand ุดู ุจูุนู
ูุto money demand too ุงู interest
144
00:13:09,460 --> 00:13:15,880
rate would increase ูุจุงูุชุงูู ุงู shifting ุงููู ุญุตู
145
00:13:15,880 --> 00:13:19,680
ูู ุงู IS ุดู ูุนู
ู increasing ูู ุงู R ู increasing
146
00:13:19,680 --> 00:13:23,680
ูู ุงู Y ูุงูู ุชุญููู ุชุจุนูุง ุจุตุจูุญ ูุงูู increasing in
147
00:13:23,680 --> 00:13:30,820
Y increasing in R ุจุตุจูุญ ุตุญ ููุง ูุฃ ุทุจ ุงุนู
ูู ุงูุนูุณ
148
00:13:30,820 --> 00:13:34,880
the opposite caseุงุนู
ู decreasing ูู ุงู government
149
00:13:34,880 --> 00:13:38,180
spending ุงู use a contractionary fiscal policy
150
00:13:38,180 --> 00:13:43,140
ูุฒูู ูุนูู ุฎููููู ูุณุชุฎุฏู
contractionary fiscal
151
00:13:43,140 --> 00:13:49,740
policy ุฃู
ุณุญ ููุงุ okay so let's use a
152
00:13:49,740 --> 00:13:59,240
contractionary fiscal policy contractionary
153
00:14:03,080 --> 00:14:08,260
Fiscal By Decreasing The Government Spending Or
154
00:14:08,260 --> 00:14:16,160
Increasing The Taxes
155
00:14:25,470 --> 00:14:30,610
ุงูุฐู ุณูุดุงูุฏู ููุง ููุฌุฏ ุชูุฑูุจ ูู Y ู ุชูุฑูุจ ูู R ูุฐุง
156
00:14:30,610 --> 00:14:37,730
ูุฌุนู IS ูุชุญุฑู ุฅูู ุงููุณุงุฑ ูู ุญุฑูุฉ IS ุ ูุฐูู ุงุนุชู
ุฏ
157
00:14:37,730 --> 00:14:45,170
ุนูู ุงูุงุฎุชุตุงุฑ ุงูุงุตุทูุงุนู ุงูุงุตุทูุงุนู RY LM
158
00:14:45,170 --> 00:14:48,250
IS
159
00:14:48,250 --> 00:14:52,330
A1 R1
160
00:14:53,870 --> 00:15:00,830
Y1ุ ูุนู
ุ ูุฐุง IS1ุ ูุฐูู ุฏุนูุง ูููู
ุจุงูุชุญููู ุงูู ุงูู
161
00:15:00,830 --> 00:15:10,110
IS ููุฑูู IS2 ู
ุง ุญุตูุ R ุงุชุฎูุท ุฅูู R2 ู Y ุงุชุฎูุท ุฅูู
162
00:15:10,110 --> 00:15:16,050
Y2ุ ูุนู
ุ ุงุชุฎูุท ูู Yุ ุงุชุฎูุท ูู R
163
00:15:18,930 --> 00:15:23,610
ุฎููููุง ูุฌุฑุจ ูู ุงูู structure ูู ุงูู
ูููุงุช ุชุจุน ุงูู
164
00:15:23,610 --> 00:15:29,850
GDP ุฌุฑุจ ู
ุน ุงูู C if the autonomous ูุฏููุฉ ุงูู C ูุฒู
165
00:15:29,850 --> 00:15:34,190
ู ุงูู I ูุฒู ุฃู ุฒุงุฏ ู ุงูู I increased ู ุงูู G
166
00:15:34,190 --> 00:15:36,750
increased ู ุงูู X increased ุฎููููุง ูุฌุฑุจ ูููู
ูุฏููุฉ
167
00:15:36,750 --> 00:15:41,980
ู ูุดูู ุชุฃุซูุฑูู
ุนูู ุงูู IS ููุณ ุงููุชูุฌุฉyes the same
168
00:15:41,980 --> 00:15:46,020
direction with the same results with the IS on the
169
00:15:46,020 --> 00:15:51,920
IS ู
ุธุจูุท ูุงู ุฌุฑุจ ูู ุงู C if the consumption
170
00:15:51,920 --> 00:15:54,880
increased or the autonomous consumption increased
171
00:15:54,880 --> 00:16:02,540
ุฎูููุง ูุดูู ุงู C increased
172
00:16:05,490 --> 00:16:11,590
ุจุงูุชุงููุ ุงุนุชุฑุถ ุฃู ุงูุงูุชุฌุงุฑ ุฃูุชุฑุ ุงูุชุฌุงุฑ ุฃูุชุฑ ูุนูู
173
00:16:11,590 --> 00:16:17,390
ุงูุชุฌุงุฑ ุงูู GDP ุฃู ุงูู Yูู
ุงู ุน ุงู aggregate
174
00:16:17,390 --> 00:16:20,770
expenditure ูุฃู ูุฐุง ู
ุด ุจุณ ุงู GDP this is aggregate
175
00:16:20,770 --> 00:16:26,310
expenditure ูุฃู ูุฐุง ุงูุงููู ุงููู ูู ุงููู ุงุณุชููุงูู I
176
00:16:26,310 --> 00:16:31,650
G X minus M ู
ุธุจูุทุ So C increasing the consumption
177
00:16:31,650 --> 00:16:34,150
leads to increasing aggregate expenditure leads to
178
00:16:34,150 --> 00:16:38,050
increasing Y increasing one demand increasing R
179
00:16:38,050 --> 00:16:40,790
the same direction there is a rightward shifting
180
00:16:40,790 --> 00:16:45,690
in the IS curve ู
ุธุจูุทุ ูุงู I ุทุจ ุฌุฑุจ ูู ุงู export
181
00:16:52,030 --> 00:17:00,830
ุจุงูุนูุณ ุจุณ ุงู M ูุฃ ุงู M increasing and the imports
182
00:17:00,830 --> 00:17:09,410
ูุชููู ุจุงูุนูุณ increasing and imports decreasing the
183
00:17:09,410 --> 00:17:15,460
aggregate expenditure decreasing Ydecreasing money
184
00:17:15,460 --> 00:17:20,400
demand decreasing R ูุจุงูุชุงูู IS will shift to
185
00:17:20,400 --> 00:17:26,240
whereุ to the left exactly yes of course ุตุญุ ุทูุจ
186
00:17:26,240 --> 00:17:30,440
ู
ูู ู
ุด ูุงูู
ูุฐู ุงูุฌุฒุฆูุงุช ุฃูุถุงุ ูุงุถุญุฉุ ุทุจ ุชุจูู
187
00:17:30,440 --> 00:17:36,360
ู
ู
ุชุงุฒ ุฎูููู ุฃุฑูุญ ุนูู ุงู LM ูุดู ุงููู ุจูุฃุซุฑ ููู ูููุง
188
00:17:36,360 --> 00:17:38,840
ุงู money supply ููู
ุงู ููู ุงู money demand
189
00:17:42,720 --> 00:17:51,040
ููุฐูุจ ุงูู ู
ูุงุฑูุฉ LM LM
190
00:17:51,040 --> 00:17:56,160
ูู ุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ
191
00:17:56,160 --> 00:18:00,520
ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ
192
00:18:00,520 --> 00:18:05,080
ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ
193
00:18:05,080 --> 00:18:10,080
ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ
194
00:18:10,080 --> 00:18:10,100
ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ
195
00:18:10,100 --> 00:18:10,100
ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ
196
00:18:10,100 --> 00:18:10,100
ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ
197
00:18:10,100 --> 00:18:10,100
ุงูู
ุฑุชุจุทุฉ ุจุงูู
ูุงุฑูุฉ ุงูู
ุฑุชุจุทุฉ ุจุงูู
198
00:18:14,400 --> 00:18:19,620
monetary policy exactly
199
00:18:19,620 --> 00:18:25,940
increasing of money supply ุดู
200
00:18:25,940 --> 00:18:31,480
ุจูุนู
ู ูู ุงู interest rate decreased exactly ูู ุนู
ู
201
00:18:31,480 --> 00:18:39,940
ุฑุณู
ู ููู this is the money supply one md one a one
202
00:18:39,940 --> 00:18:46,890
r one qm oneML increasing ูู ุงู money supply there
203
00:18:46,890 --> 00:18:49,010
is a right word shifting ูู ู
ููุ ูู ุงู money
204
00:18:49,010 --> 00:18:53,990
supply ูู to
205
00:18:53,990 --> 00:18:59,670
MS2
206
00:18:59,670 --> 00:19:03,390
in this case the interest rate would decline
207
00:19:03,390 --> 00:19:06,310
ู
ุตุจูุญุ
208
00:19:07,570 --> 00:19:15,950
ุฏุนููุง ูุนูุฏ ุฅูู ุงูุงูุงููุฒูุฉุ ูุฅู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
209
00:19:15,950 --> 00:19:15,950
ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
210
00:19:15,950 --> 00:19:17,230
ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
211
00:19:17,230 --> 00:19:22,550
ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
212
00:19:22,550 --> 00:19:23,110
ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
213
00:19:23,110 --> 00:19:23,450
ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
214
00:19:23,450 --> 00:19:32,210
ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู ุฒู
215
00:19:32,210 --> 00:19:35,730
ุฒูุทุจ ุงุนู
ู ุดู ุจูุฃุซุฑ ุงูู Expansion of Monetary
216
00:19:35,730 --> 00:19:38,210
Policy ุนูู ุงูู I .. ุนูู ุงู L Mุ Rightward
217
00:19:38,210 --> 00:19:41,350
Rightward Shiftingุ ู
ุธุจูุท ุฅุฐุง ูุนู
ู Rightward
218
00:19:41,350 --> 00:19:45,210
Shifting ูู ุงูู L M Curve ูุดูู ุตุญูุญ ุงูููุงู
ุฅูู ุงูู
219
00:19:45,210 --> 00:19:51,350
Interest Rate ูุฒู ู ุงูู Y ุฒุงุฏุช ูุงู ูุฐุง ุงูู I is 1
220
00:19:51,350 --> 00:20:01,720
ูุฐุง R ู Y ู ูุฐุง L M 1ูุงูุง ุงู equilibrium this is
221
00:20:01,720 --> 00:20:09,000
the original equilibrium R1 Y1 ู
ุธุจูุท ุงุนู
ูู
222
00:20:09,000 --> 00:20:15,780
rightward shifting to the LM curve ูุงู ุงู LM curve
223
00:20:15,780 --> 00:20:21,000
ุงุนู
ูู rightward shifting LM2
224
00:20:21,000 --> 00:20:24,740
ุดู ุงููู ุตุงุฑ we have a new equilibrium point E2
225
00:20:24,740 --> 00:20:29,360
there is a decreasing in R and increasing in Y
226
00:20:30,880 --> 00:20:35,200
ุชุญูููุง ู
ุธุจูุท ููุง ู
ุด ู
ุธุจูุทุ ูู decreasing in R and
227
00:20:35,200 --> 00:20:39,620
increasing in Y ุงู R ูู ุงู cost of growth exactly
228
00:20:39,620 --> 00:20:45,900
yes ู
ุธุจูุทุ ุทูุจ ูู ุนู
ููุง contractionary monetary
229
00:20:45,900 --> 00:20:50,100
policy ููุดูู ุดููู ุฏู ุงู decreasing in money supply
230
00:20:50,100 --> 00:20:53,600
ุฌุงู ููู
oney demand ูู
ุงู ุดููุฉ ูู ูุฌุฏ ูุนูู don't
231
00:20:53,600 --> 00:20:57,220
worry a contractionary monetary policy
232
00:21:04,140 --> 00:21:13,280
2-Contractionary Monetary
233
00:21:13,280 --> 00:21:19,080
Policy Contractionary Monetary Policy ูุนูู ุชูููู
234
00:21:19,080 --> 00:21:22,160
ุงูู
ุณุงุนุฏุฉุจุงูุชุงููุ ุชููู
ุงูู Decreasing ุงูู Money
235
00:21:22,160 --> 00:21:25,240
Supply ุจูุคุฏู ุฅูู ู
ุง ูุณู
ู Increasing ุงูู Interest
236
00:21:25,240 --> 00:21:30,080
Rate ุฌุฑุจ ุนูู ุงูุฑุณู
ุฉุ ุชุดููู ู
ุธุจูุท ููุง ูุฃุ ุตุญุ ุทูุจุ
237
00:21:30,080 --> 00:21:34,640
ูุฐุง ุดู ุจูุนู
ูุ Decreasing Iุ Decreasing Aggregate
238
00:21:34,640 --> 00:21:41,040
Expenditureุ Decreasing Yุ That's it ูุจูุนู
ู
239
00:21:41,040 --> 00:21:44,180
Leftward Shifting ูู ุงูู LM ุฅุฐู ูุฐุง ุจูุนู
ู
240
00:21:44,180 --> 00:21:47,980
Contractionary Monetaryุ LM Will Shift The Left
241
00:21:49,620 --> 00:21:54,640
ุงูุนูุงูุฉ ุจูู ุงูู R ู ุงูู Y R Increase ู Y Decline
242
00:21:54,640 --> 00:22:04,080
ุทุจ ูุดูู ุงูููุงู
ู
ุธุจูุท ู ูุง ู
ุด ู
ุธุจูุท R
243
00:22:04,080 --> 00:22:23,820
Y I S 1 L M 1 A 1 R 1 Y 1ุดู ุงููู ุตุงุฑุ there is a
244
00:22:23,820 --> 00:22:30,560
leftward shifting in the LM curve LM shifts to the
245
00:22:30,560 --> 00:22:36,180
left to LM2 there is a new equilibrium point which
246
00:22:36,180 --> 00:22:40,320
is A2 increasing
247
00:22:40,320 --> 00:22:45,660
in R decreasing in Y increasing
248
00:22:45,660 --> 00:22:53,980
in R decreasing in Yุชู
ุงู
ุทูุจ what about the money
249
00:22:53,980 --> 00:22:57,860
demand no I'm coming to the mixed policy but I
250
00:22:57,860 --> 00:23:00,860
will come back to the question that your classmate
251
00:23:00,860 --> 00:23:06,300
asked ุงููู ูู suppose ุงูู ุตุงุฑ ููู ุชุบููุฑ ูู ุงู
252
00:23:06,300 --> 00:23:11,020
money demand ู
ุด ูู ุงู money supply ูุดูู ุงู effects
253
00:23:11,020 --> 00:23:17,740
ุนูู ุงู ุงู ุงู M ุชู
ุงู
suppose that the money demand
254
00:23:17,740 --> 00:23:18,480
increased
255
00:23:21,200 --> 00:23:24,680
ุฎููููู ุฃุดููุ ูุฃ ู
ุด ูู ููุ ูุชููู oppositeุ ุชุญููู
256
00:23:24,680 --> 00:23:29,100
ู
ุนุงูุณ ุงู
257
00:23:29,100 --> 00:23:32,840
increasing ูู ุงู money demand ุจูุนู
ู shiftุ
258
00:23:32,840 --> 00:23:36,020
leftward shifting ูู ุงู Mุ ุจุนูุณ ุงู money supply ุงู
259
00:23:36,020 --> 00:23:38,840
money supplyุ ูู
ุง ูููุง ุฒูุงุฏุฉ ูู ุงู money supplyุ
260
00:23:38,840 --> 00:23:41,580
ุจูุนู
ู rightward shifting ูู ุงู Mุ ู
ุธุจูุทุ ุจูุนู
ู ุงู
261
00:23:41,580 --> 00:23:47,400
Anglo ูููู
ููุชู
ุงู
ุงู money demand ุญุงูุฉ ู
ุนุงูุณุฉ ุฒูุงุฏุฉ
262
00:23:47,400 --> 00:23:50,880
ุงู money demand ุจุชุนู
ู leftward shifting ู ุงู M
263
00:23:50,880 --> 00:23:53,840
ููุดูููุง ูุบุงูุฉ So suppose ุงู ุงู money demand
264
00:23:53,840 --> 00:24:00,160
increased increasing in the money demand ุดู ุจูุนู
ูุ
265
00:24:00,160 --> 00:24:03,960
ูุงู ูุนู
ู ุฑุณู
ุฉ ุฎูููุง ูุดูู ุฎูู ุงูุฑุณู
ุฉ ูู ุงููู ุชููููุง
266
00:24:03,960 --> 00:24:12,340
ููู ูุฑูุญ ูุงู ุงู ุงู ุงู R ุงู Q M ููู ุงู money supply
267
00:24:14,780 --> 00:24:21,300
ุงูู money demand one this is a one r one ุงู
268
00:24:21,300 --> 00:24:24,180
increasing in money demand ุดู ุจูุนู
ูุ rightward
269
00:24:24,180 --> 00:24:26,560
shifting ูุฃ ุงู money demand ูุฑุงููุฉ ู
ุฑุณูู
ุฉ ููุง ููุง
270
00:24:26,560 --> 00:24:31,520
ุดู ุจุชุนู
ูุ ุจุชุนู
ู increasing ูู ุงู interest rate so
271
00:24:31,520 --> 00:24:36,300
the increasing in money demand ุจุชุนู
ู increasing ูู
272
00:24:36,300 --> 00:24:40,820
ุงู interest rate ูุจุงูุชุงูู I would decline and then
273
00:24:41,670 --> 00:24:44,710
aggregate expenditure would decline y would
274
00:24:44,710 --> 00:24:49,250
decline ุงุฐุง ุดู ูุนูุงูุฉ ุตุงุฑุช increasing ูู ุงู R
275
00:24:49,250 --> 00:24:55,650
decreasing ูู ุงู Y ุทุจ ุฌุฑุจ ุงู M ุงูููู ูู
ูู ุงู ูุณุงุฑ
276
00:24:55,650 --> 00:25:01,250
ูุชูุงูู ุงูู ุงู leftward shifting ูู ุงูุฃุตุจุช ุงููู ูู
277
00:25:01,250 --> 00:25:07,370
ุนู
ููุง ุชุดุงุจู ุงู contractionary ูุจุชุงูู IS
278
00:25:23,260 --> 00:25:26,680
LM1A1R1Y1 ู
ุด ููุฑุจ ูุนู
ู leftward shifting ุงููู ุงุญูุง
279
00:25:26,680 --> 00:25:30,320
ู
ุชูููู ุงูู ุฒูุงุฏุฉ ุงู money demand ุนู
ููุง ุชุดุงุจู ุงู ุงู
280
00:25:30,320 --> 00:25:34,340
LM ูุงุฒู
ูุฑุฌุน ููุฎูู ุงู backward shifting ูู ุงู LM
281
00:25:34,340 --> 00:25:39,100
ูุงูู ุดู ุนู
ูุชุ ุนู
ูุช increasing ูู ุงู R ู decreasing
282
00:25:39,100 --> 00:25:39,560
ูู ุงู Y
283
00:25:46,390 --> 00:25:50,610
ุตุญุ ูุฃ ู
ุงูููุด it's related to the elasticity of
284
00:25:50,610 --> 00:25:55,690
these curves ุงูุนูุงูุฉ ุจู
ุฑููุฉ ุงู I S ู ุงู L M curves
285
00:25:55,690 --> 00:26:02,870
ุงู elasticity ุงููู ุฃุฎุฏุชููุง ูู ุงู micro ุงูู
ุฑููุฉ ูู
286
00:26:02,870 --> 00:26:07,790
ูู ุงูู
ูู ุชุจุนู ุงูู
ุฑููุฉ ูููุงุฆู ูุฑูุจ vertical close
287
00:26:07,790 --> 00:26:11,370
to vertical or horizontal ุชู
ุงู
ุ ุฅุฐุง ุงู money
288
00:26:11,370 --> 00:26:17,240
demandุนูุณู ู
ุน ุงูู LM ุจู
ุนูู ุงู ุงูุฒูุงุฏุฉ ูู ุงู money
289
00:26:17,240 --> 00:26:23,100
demand ุจุชููู ุงู LM ูู left ุตุญุ ุจุณ ุงู money supply
290
00:26:23,100 --> 00:26:28,660
ูุฃ ุงู money supply positive ู
ุน ุงู LM ูุนูู ุฒูุงุฏุฉ ุงู
291
00:26:28,660 --> 00:26:32,120
money supply ุจุชููู ุงู LM to the right ูุงุถุญุฉ ุงูุฃู
ูุฑ
292
00:26:32,120 --> 00:26:36,380
ููุง ู
ุด ูุงุถุญุฉุ ุทูุจ ููุฌูุช ูู ุจุฏู ุงูุชุฑุถ ุงูู suppose
293
00:26:36,380 --> 00:26:40,220
ุงูู ุตุญ ูู ุนูุฏู changes ูู ุงู IS ู ุงู LM at the
294
00:26:40,220 --> 00:26:41,800
same time ุจู
ุนูู
295
00:26:48,700 --> 00:26:58,380
ุฎููููู ุฃุดูู ุงูุชุญููู ุงูุขููุนูู suppose ุฃูู we used a
296
00:26:58,380 --> 00:27:02,420
mixed policy with expansionary fiscal with
297
00:27:02,420 --> 00:27:06,360
expansionary monetary ู
ุชูููู ุฃู ุงู Y ูู ูู ุงูุญุงูุงุช
298
00:27:06,360 --> 00:27:09,280
ุฅูุด ููุตูุฑููุ would increase ุฅุฐุง ุจุฃุณุชุฎุฏู
299
00:27:09,280 --> 00:27:12,560
expansionary fiscal with expansionary monetary ุงู
300
00:27:12,560 --> 00:27:16,380
Y ููุฒูุฏ ูุฐุง ู
ุชูููู ุนููู ุตุญุ ุจุณ ุงู R ููููู
301
00:27:16,380 --> 00:27:19,740
ambiguous ูุนุชู
ุฏ ุนูู ุฃู ุงูุฃุซุฑูู ุฃูุจุฑ ูุฎูููุง ูุณุชุฎุฏู
302
00:27:19,740 --> 00:27:24,570
ุงู IS ู ุงู LM ูู ุชุญููู ุงู mixed policyูุนูู suppose
303
00:27:24,570 --> 00:27:35,810
that we are going to use expansionary fiscal plus
304
00:27:35,810 --> 00:27:40,790
expansionary
305
00:27:40,790 --> 00:27:47,570
monetary ูุนูู ู
ุงููุฉ ุชูุณุนูุฉ ู
ุน ููุฏูุฉ ุชูุณุนูุฉ ุทุจุนุง
306
00:27:47,570 --> 00:27:51,930
ูุฐุง ุจูุฃุซุฑ ุนูู ููู right word ูู
ู ูู IS ูุฐุง right
307
00:27:51,930 --> 00:27:58,140
ููุนู
ู rightword shifting ูู IS ู ูุฐุง right word
308
00:27:58,140 --> 00:28:02,760
shifting ูู LM ุจุธุจุท
309
00:28:02,760 --> 00:28:07,720
ุงู expansion fiscal ุดู ุจูุนู
ู IS to the right ู ุงู
310
00:28:07,720 --> 00:28:10,860
LM or expansion monitor ุจูุนู
ู right word shifting
311
00:28:10,860 --> 00:28:17,400
ูู LM ูุฎูููู ุฃุดูู ุดู ุงููู ุจูุตูุฑ suppose
312
00:28:17,400 --> 00:28:21,220
this is R ู I
313
00:28:24,640 --> 00:28:31,240
This is LM1IS1
314
00:28:31,240 --> 00:28:37,580
ุจุณ ูู
ุงู ูู ุงู expansionary fiscal ูุฏ ูููู ุฃูุจุฑ ู
ู
315
00:28:37,580 --> 00:28:40,920
ุงู expansionary monetary ุฃู ุฃูู ุฃู ูุณุงูู ุจุชููููุง
316
00:28:40,920 --> 00:28:44,720
ููุชุจููุง ููุฐู ุงูููุทุฉ ููุงูุฑูู ุงูุญุงูุงุช ุงููู ุฎุฏูุงูุง ูู
317
00:28:44,720 --> 00:28:49,340
ุงู micro ุทุจ ุฎูููุง ูุฌุฑุจ ุงู ุงู expansionary fiscal
318
00:28:49,340 --> 00:28:55,250
ุฃูุจุฑ ู
ู ุงู expansionary monetary ูุจุงูุชุงูููู ุจุชูุฏุฑ
319
00:28:55,250 --> 00:28:59,830
ุชุญุฏุฏ ุงู R ุจุงูุถุจุท ูุฎููู ุงู ุงู rightward shifting ูู
320
00:28:59,830 --> 00:29:03,810
ุงู IS is greater than the rightward shifting ูู ุงู
321
00:29:03,810 --> 00:29:07,830
LM ููุฐุง ุจุชูุฏุฑ ุชุญุฏุฏ ุงู ุงู R ุงูุด ุตุงุฑ ูู ุฒุงุฏ ุงู ููุต
322
00:29:07,830 --> 00:29:12,010
ุจุธุจุท ููุง ูุฃ ุฎููููุง this is the original
323
00:29:12,010 --> 00:29:16,350
equilibrium E1 R1
324
00:29:18,040 --> 00:29:21,520
why whenุ ุงุญูุง ุจูููู ุงูู ุงูู effects of the
325
00:29:21,520 --> 00:29:25,580
expansionary fiscal policy is larger than the
326
00:29:25,580 --> 00:29:28,780
expansionary monetary policy ุดู ุงููู ุจูุตูุฑุ
327
00:29:28,780 --> 00:29:31,360
rightward shifting ูู ุงู IEA ุณุจุจูุฒ ุงูู ูุงู ููู
328
00:29:31,360 --> 00:29:36,820
larger than the rightward shifting and the LM ูุงู
329
00:29:36,820 --> 00:29:46,320
LM ุฒุงุฏ ุจุณ ุฒุงุฏ ุจุดููู ููููุชููุงุ this is LM2 A2ุฑ
330
00:29:46,320 --> 00:29:55,560
ุฃุฒุฏุงุฏ ูู R2 ู Y ุฃุฒุฏุงุฏ ุชู
ุงู
331
00:29:55,560 --> 00:30:07,580
ุทุจ ูุฌุฑุจ ูุดูู ุฃูู ูู ูุฐู ุงูุญุงูุฉ Y ุฃุฒุฏุงุฏ ู ุงูู R ููุง
332
00:30:08,170 --> 00:30:10,830
green with the green green with the green green
333
00:30:10,830 --> 00:30:14,330
line with the green line the second IS with the
334
00:30:14,330 --> 00:30:18,850
second LM curves ุจุงูุธุจุท ุงูุชุงูู ู
ุน ุงูุชุงูู ุทูุจ
335
00:30:18,850 --> 00:30:22,450
suppose ุงูู ูุงู ุงูุนูุณ ุงูู ุงู expansionary fiscal
336
00:30:22,450 --> 00:30:27,650
policy was smaller than the expansionary monetary
337
00:30:27,650 --> 00:30:32,530
policy what would happen ุฎูููู ุฃุดูู ูุนู
ููุง ุทูุจ
338
00:30:32,530 --> 00:30:41,440
ูุฌุฑุจ ุฑุณู
ุชู ุฎูุตุชู ุฃู
ุณุญSo suppose ุงู ุงู expansionary
339
00:30:41,440 --> 00:30:46,980
fiscal policy was smaller than the expansionary
340
00:30:46,980 --> 00:31:03,760
monetary ุดู ุงููู ุญูุตูุฑุ
341
00:31:03,760 --> 00:31:07,040
YR
342
00:31:09,060 --> 00:31:21,360
I S 1 L M 1 and this is A 1 R 1 Y 1 ู
ูู ุชุฃุซูุฑู
343
00:31:21,360 --> 00:31:26,260
ุฃูุจุฑ ุงู expansion fiscal ุฃุตุบุฑ ู
ู ุฃู less than the
344
00:31:26,260 --> 00:31:28,980
expansion monetary ูุจุงูุชุงูู ูู ุนูุฏู increasing ูู
345
00:31:28,980 --> 00:31:37,140
ุงู I S with a small ููู this is I S 2 ููุจูุฑ
346
00:31:38,080 --> 00:31:45,260
ุงูู LM ุฅุฌูู to LM2 ู
ูู ุงูุฒูุงุฏุฉ ููู ุฃูุจุฑุ ุงูู LM
347
00:31:45,260 --> 00:31:54,540
ูููุชููุง ููุง A to R declined to R2 ู Y increased to
348
00:31:54,540 --> 00:31:58,440
Y2 ุตุญุ
349
00:31:59,260 --> 00:32:03,540
ุฅุฐู ุจุงูุญุงูุชูู Y has increased ู ุจุงูุญุงูุฉ ุงูุชุงูุชุฉ Y
350
00:32:03,540 --> 00:32:06,000
would increase ูุฃู ุงู expansion ู
ุน expansionary
351
00:32:06,000 --> 00:32:09,640
for sure ุฃู ุงู Y ููุฒูุฏ ู ุงู R ambiguous ูุฃููุง ูู
352
00:32:09,640 --> 00:32:12,260
ุงูุญุงูุฉ ุงูุฃููู increased ู ุงูุญุงูุฉ ุงูุชุงูุชุฉ declined
353
00:32:12,260 --> 00:32:16,060
ูู
ุงู ุดููุฉ ูุชูุงูููุง constant ุฅุฐุง ูุงู if the
354
00:32:16,060 --> 00:32:20,030
expansion fiscal equals the expansion monetaryุชู
ุงู
355
00:32:20,030 --> 00:32:24,030
ูุฎูููุง ูุงุฎุฏ ุงู expansionary the last or the third
356
00:32:24,030 --> 00:32:28,670
case when expansionary fiscal equals the
357
00:32:28,670 --> 00:32:35,710
expansionary monetary policy ุฑุณู
ุชู
358
00:32:35,710 --> 00:32:43,990
increased
359
00:32:43,990 --> 00:32:49,780
ุงู increasedุงูู R ูุงูุช ุฃูุชุฑ ูู ุงู .. ูู ุงู .. ูู
360
00:32:49,780 --> 00:32:49,960
ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู ..
361
00:32:49,960 --> 00:32:49,960
ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู
362
00:32:49,960 --> 00:32:50,520
.. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู
363
00:32:50,520 --> 00:32:51,000
ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู ..
364
00:32:51,000 --> 00:32:52,980
ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู
365
00:32:52,980 --> 00:32:58,720
.. ูู ุงู ..
366
00:32:58,720 --> 00:33:02,540
ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู
367
00:33:02,540 --> 00:33:02,900
.. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู
368
00:33:02,900 --> 00:33:02,900
ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู ..
369
00:33:02,900 --> 00:33:02,900
ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู
370
00:33:02,900 --> 00:33:02,900
.. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู
371
00:33:02,900 --> 00:33:02,900
ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู ..
372
00:33:02,900 --> 00:33:10,600
ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู .. ูู ุงู ..
373
00:33:10,600 --> 00:33:12,540
ูู ุงู
374
00:33:18,830 --> 00:33:26,230
When they are equals R
375
00:33:26,230 --> 00:33:31,410
Y L
376
00:33:31,410 --> 00:33:44,510
M 1 I S 1 E 1 R 1 Y 1ุจู
ุนูู ุงู ุงูู rightward
377
00:33:44,510 --> 00:33:47,210
shifting ูู ุงู IS equal ุงู rightward shifting ูู
378
00:33:47,210 --> 00:33:52,390
ุงู LM ุฎููููู ุฃุดูู ูุงู there is a rightward
379
00:33:52,390 --> 00:34:02,550
shifting ูู ุงู IS to IS2 ู ุงู LM ูู
ุงู the same to
380
00:34:02,550 --> 00:34:03,550
LM2
381
00:34:07,580 --> 00:34:17,320
Y ูุฒุฏุงุฏ ุฅูู Y2 ูR ูุจูู ู
ุฑุชุจุท ุจูR1 ููู R2 ูุฐุง ูู E2
382
00:34:17,320 --> 00:34:20,540
ุฎููููุง
383
00:34:20,540 --> 00:34:25,140
ูุฌุฑุจ expansion of fiscal with contraction of
384
00:34:25,140 --> 00:34:25,580
monetary
385
00:34:29,770 --> 00:34:33,490
ุฅุฐุง ุงุณุชุฎุฏู
ูุง if we used an expansionary fiscal
386
00:34:33,490 --> 00:34:36,870
with expansionary monetary in all cases Y would
387
00:34:36,870 --> 00:34:41,970
increase and R is ambiguous it depends on which is
388
00:34:41,970 --> 00:34:44,330
greater the expansionary fiscal or the
389
00:34:44,330 --> 00:34:50,390
expansionary monetary ุทุจุนุง
390
00:34:50,390 --> 00:34:55,810
ุทุจุนุง ุทุจุนุง ุงู R and Iูุฃู ุงูุงุฑ ู
ูุฑุชุงู ูู ู
ุฑุชุจุทุฉ ุจู I
391
00:34:55,810 --> 00:35:02,670
ูู Planned Investment ูุฐูู ุฏุนููุง ูููู
ุจุงูุชุนููู ุจูู
392
00:35:02,670 --> 00:35:07,370
ุงู ุฅุฐุง ูุงูุช ุงูุญููู
ุฉ ุชุณุชุฎุฏู
ุงุชูุงู ุนุฑุถ ูุงุณูุงู ููุงูุช
393
00:35:07,370 --> 00:35:16,550
ุงููุธููุฉ ุชุณุชุฎุฏู
ุงุชูุงู ุนุฑุถ ู
ูุงูู ูุฐูู
394
00:35:16,550 --> 00:35:20,750
ุณูุณุชุฎุฏู
ุงุชูุงู ุนุฑุถ ูุงุณูุงู ู
ุน
395
00:35:25,260 --> 00:35:31,900
Contractionary Monetary Expansion
396
00:35:31,900 --> 00:35:36,120
fiscal policy ุดู ุจุชุนู
ู ูู ุงู ISุ Rightward ุจุณ ุงู
397
00:35:36,120 --> 00:35:39,100
contractionary monetary policy leftward shifting
398
00:35:39,100 --> 00:35:43,100
ูู
ูุ ูู LM So LM will shift to the left
399
00:35:48,100 --> 00:35:51,680
ููุง ุงู Y ูุชููู ambiguous ูุชุนุชู
ุฏ ุนูู ุฃูู ุงูุฃุซุฑูู
400
00:35:51,680 --> 00:35:58,000
ุฃูุจุฑ ููู ุงู R ุดู ุงููู ููุตูุฑ ูููุง ุฎูููุง ูุญูู ูุชุฒูุฏ
401
00:35:58,000 --> 00:36:04,280
would increase ุทุจ ุฌุฑุจูุง ุงููุนูุฏู
ุง ุชุชุนุงู
ู ุงูุงุณุชุฎุฏุงู
402
00:36:04,280 --> 00:36:05,380
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
403
00:36:05,380 --> 00:36:09,440
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
404
00:36:09,440 --> 00:36:14,940
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
405
00:36:14,940 --> 00:36:17,900
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
406
00:36:17,900 --> 00:36:18,320
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
407
00:36:18,320 --> 00:36:18,400
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏุงู
ุงูุงุณุชุฎุฏู
408
00:36:18,400 --> 00:36:18,400
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
409
00:36:18,400 --> 00:36:23,780
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
410
00:36:23,780 --> 00:36:30,880
ุงูุงุณุชุฎุฏู
ุงูุงุณุชุฎุฏู
411
00:36:30,880 --> 00:36:31,020
ุงูุง
412
00:36:35,880 --> 00:36:45,220
LM1 A1 R1 Y1 Our assumption is the expansion of
413
00:36:45,220 --> 00:36:48,600
fiscal policy is a greater or larger than the
414
00:36:48,600 --> 00:36:52,100
contractionary monetary ููุง ูู ุนูุฏู rightward
415
00:36:52,100 --> 00:36:57,060
shifting ุจุงู IS ูุจูุฑ Greater than the leftward
416
00:36:57,060 --> 00:37:01,500
shifting ูู ุงู LM ู
ุธุจูุท So suppose that the IS
417
00:37:01,500 --> 00:37:03,300
increased to IS2
418
00:37:10,990 --> 00:37:16,490
this is I S 2 ู
419
00:37:16,490 --> 00:37:20,990
L M ุดู ุตุงุฑ ููู leftward shifting ูู ุงู L M with a
420
00:37:20,990 --> 00:37:29,670
small amount to L M 2 there is a new equilibrium E
421
00:37:29,670 --> 00:37:39,080
2 point increasing R increasing Y to Y 2ุงูู first
422
00:37:39,080 --> 00:37:43,320
case ูู ุนูุฏู increasing ูู ุงููR and increasing ูู
423
00:37:43,320 --> 00:37:50,800
ุงููY ุทุจ ุฌุฑุจ ุฎูููู
small or the expansion fiscal
424
00:37:50,800 --> 00:37:54,540
policy is smaller than the contractual monitoring
425
00:37:54,540 --> 00:38:00,940
ูุฌุฑุจุ okay ุงู smallุ ูุนู
ูู ุงู expansion fiscal ุดู
426
00:38:00,940 --> 00:38:04,820
ุจุชุนู
ูุ rightward shifting ูู ุงููISุทุจ ุงู
427
00:38:04,820 --> 00:38:06,940
contraction of the molecule ุจุชุนู
ู leftward
428
00:38:06,940 --> 00:38:10,940
shifting ูู ุงู LM ุฃุธุจุทุ ููู ุงููู ุชูููู Green Lines
429
00:38:10,940 --> 00:38:17,400
ุฏููุ and A too so R has increased ู Y increased ุทุจ
430
00:38:17,400 --> 00:38:22,460
ุฌุฑุจ ุงูุฃูุณ Yes ูู ูุฐุง ุงููู ููุดููู ูู
ุงู ุดููุฉ ุนุดุงู
431
00:38:22,460 --> 00:38:26,700
ุงูู ููุชูู ุงู Y is ambiguous ุญุชู ููุชูู ู ุงูุช ูู
ุง
432
00:38:26,700 --> 00:38:30,180
ุจูููููุง equals ูุฌุฑุจูู ุงู three cases ูุนูู don't
433
00:38:30,180 --> 00:38:33,460
worry ุทูุจ suppose
434
00:38:34,980 --> 00:38:39,720
ุฅู ุงู expansion fiscal policy is smaller than the
435
00:38:39,720 --> 00:38:45,340
contractionary monetary ู
ุด ุนุงุฑู I don't know we
436
00:38:45,340 --> 00:38:52,980
have to draw and explain the result so
437
00:38:52,980 --> 00:38:59,140
YR
438
00:38:59,140 --> 00:39:02,960
IS
439
00:39:02,960 --> 00:39:04,600
1
440
00:39:15,720 --> 00:39:21,960
LM1E1R1Y1 ุงูุฃุณู
is we have an expansionary fiscal
441
00:39:21,960 --> 00:39:27,380
policy is smaller than the contractionary monetary
442
00:39:27,380 --> 00:39:35,230
ูุนูู LISZ ุจุญุงุฌุฉ ุจุณูุทุฉ ูุฐู ุงูููุฑุฉุงูู IS ููุงู ููู
ุฉ
443
00:39:35,230 --> 00:39:39,470
ุตุญูุญุฉ ุชุชุญุฑู ู
ู ุงูู IS ุฅูู ุงูู IS2 ู
ุน ูุฐู ุงูููู
ุฉ
444
00:39:39,470 --> 00:39:44,770
ุงูู Contractionary ุงูู M ุฅูู ุงููุณุงุฑ ุจู
ุฌู
ูุนุฉ ุฃูุชุฑ
445
00:39:44,770 --> 00:39:53,610
ุจู
ุฌู
ูุนุฉ ุฃูุชุฑ ุฅูู ุงูู M2 ุฃูู ููุชูููุ ููุง ูุฐุง E2 ุงูู
446
00:39:53,610 --> 00:40:00,820
R ุฃูุชุฑ ุฅูู ุงูู R2 ุงูู Y ุฃูุชุฑ ุฅูู ุงูู Y2ู
ุซููุง ูู
447
00:40:00,820 --> 00:40:04,840
ุงูุญุงูุฉ ุงูุฃููู R ุฃูุชุฑ ููู ุงูุญุงูุฉ ุงูุซุงููุฉ ุฃูุถูุง R
448
00:40:04,840 --> 00:40:11,120
ุฃูุชุฑ ููู ุงูุญุงูุฉ ุงูุซุงูุซุฉ R ุฃูุชุฑ ูููู ุงู Y ุฃูุชุฑ
449
00:40:11,120 --> 00:40:16,400
ููููุช ููุฌุจ ุฃู ุชููู ู
ุณุชู
ุฑูุง ุนูุฏู
ุง ูููููุง ู
ุชุณุงูู
ูู
450
00:40:16,400 --> 00:40:22,900
ุตุญุ ุจุตุจูุทุ ุทูุจุ ู
ู ูู
ูููู
ูุฐุง ุงูุงูุงููุณ ุงูุณุงุจู
451
00:40:22,900 --> 00:40:28,340
ุนููุงุ ุทูุจุ ูุงุฎุฏ ุงูุญุงูุฉ ุงูุฃุฎูุฑุฉor the third case
452
00:40:28,340 --> 00:40:51,720
ูู
ุง ุจูููููุง they are equals Y
453
00:40:51,720 --> 00:41:11,110
R I S 1L M 1 A 1 R 1 Y 1 ุฅูู increasing in IS or a
454
00:41:11,110 --> 00:41:16,390
rightward shifting ูู ุงู IS IS
455
00:41:16,390 --> 00:41:24,030
2 and decreasing in LM with the same amount
456
00:41:26,650 --> 00:41:28,790
ุงูู
ุณุงูุฉ ูุงู ุชุณุงูู ุงูู
ุณุงูุฉ ูุงู
457
00:41:36,710 --> 00:41:40,430
ูุชุนุชู
ุฏ ุนูู ุฃู ุงูุฃุซุฑูู ุฃูุจุฑุ ุฅุฐุง if the government
458
00:41:40,430 --> 00:41:43,990
used an expansionary fiscal policy at the same
459
00:41:43,990 --> 00:41:46,430
time the central bank used a contractionary
460
00:41:46,430 --> 00:41:50,090
monetary policy in all cases the interest rate
461
00:41:50,090 --> 00:41:55,190
would increase and why is ambiguous it depends on
462
00:41:55,190 --> 00:42:01,870
ู
ู ุงูุฃุซุฑูู ุฃู ุงูุฃุซุฑูู ุฃูุจุฑุ ู
ุธุจูุทุุฅููุ ุฑุฌุนุชู ูู
463
00:42:01,870 --> 00:42:06,650
micro ุจุณ ูู ููู
ูุง ูุฐุงุ ุฃูุง ู
ุด ูุงูู
ูุงุ ุทูุจุ ูู ุญุงุฌุฉ
464
00:42:06,650 --> 00:42:08,650
ุฃู ูุฑูุญ ู contraction or re-fiscal with
465
00:42:08,650 --> 00:42:10,410
contraction or monetaryุ ุฃู ูุงุ ููุง ุจุชุนุฑููุง
466
00:42:10,410 --> 00:42:12,370
ุชุดุชุบููุง ูุญุงููู
ุ ูุนุทููู
ุงูุขููุฉ
|