<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>kenjisato.jp</title>
    <link>https://www.kenjisato.jp/en/</link>
    <description>Recent content on kenjisato.jp</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 06 Sep 2023 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://www.kenjisato.jp/en/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>juicedown v0.1.1</title>
      <link>https://www.kenjisato.jp/en/post/2023/09/juicedown-v0-1-1/</link>
      <pubDate>Wed, 06 Sep 2023 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/post/2023/09/juicedown-v0-1-1/</guid>
      <description>&lt;div id=&#34;juicedown&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;juicedown&lt;/h2&gt;&#xA;&lt;p&gt;&lt;strong&gt;juicedown&lt;/strong&gt; v0.1.1 is now available on CRAN 🎉&lt;/p&gt;&#xA;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;install.packages(&amp;quot;juicedown&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;what-does-it-do&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;What Does It Do?&lt;/h2&gt;&#xA;&lt;p&gt;It is a small package that combines two basic tasks into one:&lt;/p&gt;&#xA;&lt;ol style=&#34;list-style-type: decimal&#34;&gt;&#xA;&lt;li&gt;Write documents in R Markdown and convert them to HTML (R Markdown v1).&lt;/li&gt;&#xA;&lt;li&gt;Convert HTML with inlined CSS (juice).&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;motivation&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Motivation&lt;/h2&gt;&#xA;&lt;p&gt;There has been a cost-saving trend in my university and they recommend&#xA;instructors against printing teaching material. Also, students also bring their own PCs to the university. Distributing course content in digital format is becoming common. While distributing in PDF format is a preferred approach, nowadays many students do not print on paper, so I think it’s convenient to distribute important materials in HTML format that can be easily viewed on smartphones&lt;a href=&#34;#fn1&#34; class=&#34;footnote-ref&#34; id=&#34;fnref1&#34;&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Generate bordered tables with exams::exams2mooodle</title>
      <link>https://www.kenjisato.jp/en/post/2020/07/moodle-bordered-table/</link>
      <pubDate>Fri, 24 Jul 2020 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/post/2020/07/moodle-bordered-table/</guid>
      <description>&lt;h2 id=&#34;motivation&#34;&gt;Motivation &lt;a href=&#34;#motivation&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;By default, tables in moodle problems created with &lt;code&gt;exams::exams2moodle&lt;/code&gt; do not have table or cell borders. I want tables with borders!&lt;/p&gt;&#xA;&lt;p&gt;If you does too, you might find this post useful.&lt;/p&gt;&#xA;&lt;h2 id=&#34;stylesheet&#34;&gt;Stylesheet &lt;a href=&#34;#stylesheet&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;Create a style for a class you will use for tables. Note that this is not a CSS file but a HTML code snippet that you want to include in markdown files.&lt;/p&gt;&#xA;&lt;script src=&#34;https://gist.github.com/kenjisato/b8c3d14d20eaf11d5bc8238a97a61139.js&#34;&gt;&lt;/script&gt;&#xA;&lt;p&gt;Instead of styling a class, it&amp;rsquo;s possible to style &lt;code&gt;table&lt;/code&gt; tag itself. But I strongly discourage you from doing this. That will affect the appearance of other tables used in Moodle.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Cross Referenceable Equation with Preview in RMarkdown</title>
      <link>https://www.kenjisato.jp/en/post/2017/02/cross-referenceable-equation-with-preview-in-rmarkdown/</link>
      <pubDate>Sun, 12 Feb 2017 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/post/2017/02/cross-referenceable-equation-with-preview-in-rmarkdown/</guid>
      <description>&lt;h2 id=&#34;cross-referenceable-math-equation-in-rmarkdown&#34;&gt;Cross-referenceable math equation in RMarkdown &lt;a href=&#34;#cross-referenceable-math-equation-in-rmarkdown&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;You can cross-reference equations in Rmarkdown if you set output to&#xA;&lt;code&gt;bookdown::pdf_document2&lt;/code&gt; and write equations within&#xA;&lt;code&gt;\begin{align} ~ \end{align}&lt;/code&gt; or &lt;code&gt;\begin{equation} ~ \end{equation}&lt;/code&gt;&lt;/p&gt;&#xA;&lt;p&gt;To make a tag, put &lt;code&gt;(\#eq:label_name)&lt;/code&gt; inside a math environment. The equation&#xA;can be cross-referenced by  &lt;code&gt;\＠ref(eq:label_name)&lt;/code&gt;. See &lt;a href=&#34;http://stackoverflow.com/a/38884378/1877682&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;this stackoverflow answer by Yihui Xie&lt;/a&gt; and&#xA;&lt;a href=&#34;https://bookdown.org/yihui/bookdown/markdown-extensions-by-bookdown.html#equations&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;the related section of his bookdown book&lt;/a&gt; for more detail.&lt;/p&gt;&#xA;&lt;p&gt;&lt;code&gt;\begin{equation*} ~ \end{equation*}&lt;/code&gt; also produces an equation without number.&lt;/p&gt;&#xA;&lt;h2 id=&#34;drawback&#34;&gt;Drawback &lt;a href=&#34;#drawback&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;A drawback of using &lt;code&gt;\begin{align} ~ \end{align}&lt;/code&gt; or the like is that&#xA;RStudio doesn&amp;rsquo;t support math preview for them (yet). You must embrace&#xA;the whole math environment with &lt;code&gt;$$&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Computation of the Optimal Policy for the Optimal Growth (Euler Equation)</title>
      <link>https://www.kenjisato.jp/en/post/2017/01/computation-of-the-optimal-policy-for-the-optimal-growth-euler-equation/</link>
      <pubDate>Sun, 15 Jan 2017 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/post/2017/01/computation-of-the-optimal-policy-for-the-optimal-growth-euler-equation/</guid>
      <description>&lt;p&gt;(Mainly for students attending &lt;a href=&#34;https://www.kenjisato.jp/teaching/ma/2016Q4&#34;&gt;my class&lt;/a&gt;.)&lt;/p&gt;&#xA;&lt;p&gt;As supplementary matrials on our way to understanding the optimal growth&#xA;model, I put an R code and related documents on my github repository:&#xA;&lt;a href=&#34;https://github.com/kenjisato/intro-macro&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;kenjisato/intro-macro&lt;/a&gt;:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/kenjisato/intro-macro/blob/master/r/optimal_growth_euler.R&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;/r/optimal_growth_euler.R&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/kenjisato/intro-macro/blob/master/doc/r/optimal_growth_euler.Rmd&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;/doc/r/optimal_growth_euler.Rmd&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/kenjisato/intro-macro/blob/master/doc/r/optimal_growth_euler.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Compiled PDF&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;I do this mainly for a pedagogical reason. As a matter of fact, the above&#xA;mentioned script &lt;strong&gt;isn&amp;rsquo;t practical&lt;/strong&gt;; it does work if the initial condition is&#xA;close to the steady state and the initial guesses of optimal consumption are&#xA;sufficiently accurate but otherwise doesn&amp;rsquo;t (it&amp;rsquo;d take very loong time).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Economic Dynamics (2017)</title>
      <link>https://www.kenjisato.jp/en/teaching/ed/2017/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ed/2017/</guid>
      <description>&lt;div id=&#34;q1-economic-dynamics-kobe-univ.&#34; class=&#34;section level1&#34;&gt;&#xA;&lt;h1&gt;2017Q1 Economic Dynamics (Kobe Univ.)&lt;/h1&gt;&#xA;&lt;div id=&#34;lecture-slides&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Lecture Slides&lt;/h2&gt;&#xA;&lt;p&gt;Mostly in Japanese.&lt;/p&gt;&#xA;&lt;table&gt;&#xA;&lt;colgroup&gt;&#xA;&lt;col width=&#34;12%&#34; /&gt;&#xA;&lt;col width=&#34;78%&#34; /&gt;&#xA;&lt;col width=&#34;9%&#34; /&gt;&#xA;&lt;/colgroup&gt;&#xA;&lt;thead&gt;&#xA;&lt;tr class=&#34;header&#34;&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Day&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Title&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Memo&lt;/th&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 01&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day01/day01.html&#34;&gt;Course Overview (mostly in Japanese)&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 02&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day02/day02.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day02/ramsey.pdf&#34;&gt;Notes on the Ramsey model&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 03&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day03/day03.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day03/day03suppl.html&#34;&gt;RStudio Shortcuts&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 04&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day04/day04.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day04/day04quiz.pdf&#34;&gt;Quiz&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 05&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day05/day05.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 06&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day06/day06.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 07&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day07/day07.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 08&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day08/day08.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day08/day08quiz.pdf&#34;&gt;Quiz&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 09&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day09/day09.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 10&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day10/day10.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day10/day10quiz.pdf&#34;&gt;Quiz&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 11&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day11/day11.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 12&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day12/day12.html&#34;&gt;Slides&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ed17q1/slides/master/day12/day12note.pdf&#34;&gt;Example&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;lecture-notes&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Lecture Notes&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;http://led.kenjisato.jp&#34; class=&#34;uri&#34;&gt;http://led.kenjisato.jp&lt;/a&gt; (work in progress, in Japanese)&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;assignments&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Assignments&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/rokko-ed17q1/hw-portal&#34; class=&#34;uri&#34;&gt;https://github.com/rokko-ed17q1/hw-portal&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;additional-information&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Additional Information&lt;/h2&gt;&#xA;&lt;p&gt;&lt;a href=&#34;https://github.com/rokko-ed17q1/hw-portal/wiki&#34;&gt;hw-portal/Wiki&lt;/a&gt;&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Graduate Macroeconomics</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/grad/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/grad/</guid>
      <description>&lt;div id=&#34;real-business-cycle-model&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Real Business Cycle Model&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://colab.research.google.com/drive/1JbJVdZcLY0_aNbDmJT_FruMm1tfzXlIZ?usp=sharing&#34;&gt;Python code for Romer §5.6&lt;/a&gt;&lt;br /&gt;&#xA;This Colab notebook presents Python code to run the simulation in §5.6 of Romer 5e. It basically translates Romer’s verbal explanations of the method of undetermined coefficients into Python. For actual day-to-day research, you may prefer to use Benjamin Jenkins’ &lt;strong&gt;linearmodels&lt;/strong&gt; package or Dynare, but writing code yourself for once will be very helpful to absorb the algorithm.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;ramsey-model&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Ramsey Model&lt;/h2&gt;&#xA;&lt;/div&gt;</description>
    </item>
    <item>
      <title>Macroeconomics (2016Q2)</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/2016q2/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/2016q2/</guid>
      <description>&lt;h1 id=&#34;2016-q2-macroeconomics-gmap-gse-kobe-university&#34;&gt;2016 Q2 Macroeconomics (GMAP, GSE, Kobe University) &lt;a href=&#34;#2016-q2-macroeconomics-gmap-gse-kobe-university&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h1&gt;&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus &lt;a href=&#34;#syllabus&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q2/16MA2A.pdf&#34;&gt;16MA2A: Syllabus&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;lecture-notes-problem-sets&#34;&gt;Lecture Notes, Problem Sets &lt;a href=&#34;#lecture-notes-problem-sets&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;[16MA2B: Problem Set + Homework]&#xA;&lt;ul&gt;&#xA;&lt;li&gt;[16MA2B-Sol: Solution to [16MA2B]]&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;[16MA2C: Problem Set]&lt;/li&gt;&#xA;&lt;li&gt;[16MA2D: Units of measurement in continuous- and discrete-time models]&lt;/li&gt;&#xA;&lt;li&gt;[16MA2E: Summary of the Solow model]&lt;/li&gt;&#xA;&lt;li&gt;[16MA2F: Homework assignment 2]&lt;/li&gt;&#xA;&lt;li&gt;[16MA2G-Sol: Solution to Quiz]&lt;/li&gt;&#xA;&lt;li&gt;[16MA2H: Exercise (Hamiltonian)]&lt;/li&gt;&#xA;&lt;li&gt;[16MA2I: Discrete-time Ramsey model]&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;jupyter-notebooks&#34;&gt;Jupyter Notebooks &lt;a href=&#34;#jupyter-notebooks&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;http://mybinder.org/repo/kenjisato/macroeconomics&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Launch Binder&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;When you can&amp;rsquo;t reach the app, the binder service might be busy. Please clone (download)&#xA;the files from github repo&lt;/p&gt;</description>
    </item>
    <item>
      <title>Macroeconomics (2016Q4)</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/2016q4/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/2016q4/</guid>
      <description>&lt;h1 id=&#34;2016-q4-macroeconomics-kobe-univ&#34;&gt;2016 Q4 Macroeconomics (Kobe Univ.) &lt;a href=&#34;#2016-q4-macroeconomics-kobe-univ&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h1&gt;&lt;h2 id=&#34;syllabus&#34;&gt;Syllabus &lt;a href=&#34;#syllabus&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4A.pdf&#34;&gt;16MA4A: Syllabus&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;lecture-notes-problem-sets&#34;&gt;Lecture Notes, Problem Sets &lt;a href=&#34;#lecture-notes-problem-sets&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4B.pdf&#34;&gt;16MA4B: Problem Set&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4_a.pdf&#34;&gt;16MA4a: Simulation of the Solow model&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4_a.Rmd&#34;&gt;R Notebook&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4_b.pdf&#34;&gt;16MA4b: Convergence&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4_b.Rmd&#34;&gt;R Notebook&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/16MA4-Mid.pdf&#34;&gt;16MA4-Mid: Take-home exam&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Due on 13 January, 2017&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;presentation-files&#34;&gt;Presentation Files &lt;a href=&#34;#presentation-files&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day01.html&#34;&gt;Day 01&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day05.html&#34;&gt;Day 05&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day05.Rpres&#34;&gt;Source&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day06.html&#34;&gt;Day 06&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day06.Rpres&#34;&gt;Source&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day07.html&#34;&gt;Day 07&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day08.html&#34;&gt;Day 08&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day08.Rmd&#34;&gt;Source&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day09.html&#34;&gt;Day 09&lt;/a&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day09.Rmd&#34;&gt;Source&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day10.html&#34;&gt;Day 10&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day11.html&#34;&gt;Day 11&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day12.html&#34;&gt;Day 12&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day13.html&#34;&gt;Day 13&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://www.kenjisato.jp/files/ma/2016Q4/slides/16MA4_day14.html&#34;&gt;Day 14&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;supplementary-materials&#34;&gt;Supplementary Materials &lt;a href=&#34;#supplementary-materials&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;Computation of Optimal Growth based on Euler Equation&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/kenjisato/intro-macro/blob/master/doc/r/optimal_growth_euler.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;PDF&lt;/a&gt; or &lt;a href=&#34;https://kenjisato.github.io/kenjisato/intro-macro/doc/r/optimal_growth_euler.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;HTML&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;Computation of Optimal Growth based on Dynamic Programming&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/kenjisato/intro-macro/blob/master/doc/r/optimal_growth_dp.pdf&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;PDF&lt;/a&gt; or &lt;a href=&#34;https://kenjisato.github.io/kenjisato/intro-macro/doc/r/optimal_growth_dp.html&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;HTML&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 id=&#34;rstudio&#34;&gt;RStudio &lt;a href=&#34;#rstudio&#34; class=&#34;anchor&#34;&gt;🔗&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;To run Rmd files above and to compile (knit) them to pdf or other document format,&#xA;install RStudio &amp;gt; 1.0.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Macroeconomics (2017Q2)</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/2017q2/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/2017q2/</guid>
      <description>&lt;div id=&#34;q2-macroeconomics-kobe-univ.&#34; class=&#34;section level1&#34;&gt;&#xA;&lt;h1&gt;2017 Q2 Macroeconomics (Kobe Univ.)&lt;/h1&gt;&#xA;&lt;div id=&#34;course-materials&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Course materials&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Day 01&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/9c6d2de2/day01/day01.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/9c6d2de2/handouts/ma17q2-A.pdf&#34;&gt;Syllabus : A&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/9c6d2de2/handouts/ma17q2-B.pdf&#34;&gt;Problem Set : B&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/hw01/master/problem.pdf&#34;&gt;Homework : hw01&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 02&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day02/day02.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/18d08796/handouts/ma17q2-C.pdf&#34;&gt;Problem Set : C&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/hw02/master/problem.pdf&#34;&gt;Homework : hw02&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;Exercise : ex01&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 03&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day03/day03.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/57b986a9/handouts/ma17q2-D.pdf&#34;&gt;Problem Set : D&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/ex02/master/problem.pdf&#34;&gt;Exercise : ex02&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 04&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day04/day04.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/5940815d/handouts/ma17q2-E.pdf&#34;&gt;Problem Set : E&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/ex03/master/problem.pdf&#34;&gt;Exercise : ex03&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 05&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day05/day05.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/083f938d/handouts/ma17q2-F.pdf&#34;&gt;Problem Set : F&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/hw03/acb91098/problem.pdf&#34;&gt;Homework : hw03&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 06&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day06/day06.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/84ff5356/handouts/ma17q2-G.pdf&#34;&gt;Problem Set : G&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/mid/master/problem.pdf&#34;&gt;Midterm : Due on 2017/07/14 18:00&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 07&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day07/day07.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q2/slides/0d62501a/handouts/ma17q2-H.pdf&#34;&gt;Problem Set : H&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 08&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day08/day08.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-I.pdf&#34;&gt;Problem Set : I&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 09&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day09/day09.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-J.pdf&#34;&gt;Problem Set : J&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 10&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day10/day10.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-K.pdf&#34;&gt;Problem Set : K&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 11&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day11/day11.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-L.pdf&#34;&gt;Problem Set : L&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 12&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day12/day12.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-M.pdf&#34;&gt;Problem Set : M&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 13&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/day13/day13.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-N.pdf&#34;&gt;Problem Set : N&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q2/slides/master/handouts/ma17q2-O.pdf&#34;&gt;Problem Set : O&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;assignments-and-exercises&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Assignments and exercises&lt;/h2&gt;&#xA;&lt;p&gt;See &lt;a href=&#34;https://github.com/rokko-ma17q2/hw-portal&#34; class=&#34;uri&#34;&gt;https://github.com/rokko-ma17q2/hw-portal&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Macroeconomics (2017Q4)</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/2017q4/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/2017q4/</guid>
      <description>&lt;div id=&#34;q4-macroeconomics-kobe-univ.&#34; class=&#34;section level1&#34;&gt;&#xA;&lt;h1&gt;2017 Q4 Macroeconomics (Kobe Univ.)&lt;/h1&gt;&#xA;&lt;div id=&#34;course-materials&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Course materials&lt;/h2&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Day 01&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day01/day01.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q4/material/4de4b3c9/handouts/ma17q4-A.pdf&#34;&gt;Syllabus : A&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q4/material/4de4b3c9/handouts/ma17q4-B.pdf&#34;&gt;Problem Set : B&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/hw-portal&#34;&gt;Homework : hw01, Due on 7 Dec. &lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 02&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day02/day02.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q4/material/892d2989/handouts/ma17q4-C.pdf&#34;&gt;Problem Set : C&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/hw-portal&#34;&gt;Homework : hw02, Due on 11 Dec.&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 03&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day03/day03.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://cdn.rawgit.com/rokko-ma17q4/material/6b31842f/handouts/ma17q4-D.pdf&#34;&gt;Problem Set : D&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/hw-portal&#34;&gt;Homework : hw03, Due on 14 Dec.&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 04&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day04/day04.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-E.pdf&#34;&gt;Problem Set : E&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/hw-portal&#34;&gt;Homework : hw04, Due on 18 Dec.&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 05&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day05/day05.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-F.pdf&#34;&gt;Problem Set : F&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 06&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day06/day06.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-G.pdf&#34;&gt;Problem Set : G&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 07&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day07/day07.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-H.pdf&#34;&gt;Problem Set : H&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 08&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day08/day08.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-I.pdf&#34;&gt;Problem Set : I&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 09&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day09/day09.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-J.pdf&#34;&gt;Problem Set : J&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 10&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day10/day10.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-K.pdf&#34;&gt;Problem Set : K&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 11&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day11/day11.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-L.pdf&#34;&gt;Problem Set : L&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 12&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day12/day12.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-M.pdf&#34;&gt;Problem Set : M&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 13&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/day13/day13.html&#34;&gt;Slides&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-N.pdf&#34;&gt;Problem Set : N&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;li&gt;Day 14&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma17q4/material/master/handouts/ma17q4-O.pdf&#34;&gt;Problem Set : O&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;assignments-and-exercises&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Assignments and exercises&lt;/h2&gt;&#xA;&lt;p&gt;See &lt;a href=&#34;https://github.com/rokko-ma17q4/hw-portal&#34; class=&#34;uri&#34;&gt;https://github.com/rokko-ma17q4/hw-portal&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Macroeconomics (2018Q1)</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/2018q1/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/2018q1/</guid>
      <description>&lt;div id=&#34;q1-macroeconomics-kobe-univ.&#34; class=&#34;section level1&#34;&gt;&#xA;&lt;h1&gt;2018 Q1 Macroeconomics (Kobe Univ.)&lt;/h1&gt;&#xA;&lt;div id=&#34;course-material&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Course material&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;&lt;colgroup&gt;&#xA;&lt;col width=&#34;11%&#34; /&gt;&#xA;&lt;col width=&#34;31%&#34; /&gt;&#xA;&lt;col width=&#34;57%&#34; /&gt;&#xA;&lt;/colgroup&gt;&#xA;&lt;thead&gt;&#xA;&lt;tr class=&#34;header&#34;&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Date&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Slides&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Handouts&lt;/th&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 6&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day01/day01.html&#34;&gt;Day 01&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-A.pdf&#34;&gt;A&lt;/a&gt;, &lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-B.pdf&#34;&gt;B&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 10&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day02/day02.html&#34;&gt;Day 02&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-C.pdf&#34;&gt;C&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 13&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day03/day03.html&#34;&gt;Day 03&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-D.pdf&#34;&gt;D&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 17&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day04/day04.html&#34;&gt;Day 04&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-E.pdf&#34;&gt;E&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 20&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day05/day05.html&#34;&gt;Day 05&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-F.pdf&#34;&gt;F&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 24&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day06/day06.html&#34;&gt;Day 06&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-G.pdf&#34;&gt;G&lt;/a&gt;, &lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-H.pdf&#34;&gt;H&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;April 27&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 07&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-I.pdf&#34;&gt;I&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 1&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 08 (Midterm Exam)&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 8&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day09/day09.html&#34;&gt;Day 09&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-J.pdf&#34;&gt;J&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 11&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day10/day10.html&#34;&gt;Day 10&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-K.pdf&#34;&gt;K&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 18&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day11/day11.html&#34;&gt;Day 11&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-L.pdf&#34;&gt;L&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 22&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 12&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-M.pdf&#34;&gt;M&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 25&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day13/day13.html&#34;&gt;Day 13&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-N.pdf&#34;&gt;N&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;May 29&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/day14/day14.html&#34;&gt;Day 14&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rawgit.com/rokko-ma18q1/material/master/handouts/ma18q1-O.pdf&#34;&gt;O&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;June 5&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 15 (Final Exam)&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;The slides and handouts for 2017Q4 are available [here](https://www.kenjisato.jp/en/teaching/ma/2017q4/).&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;assignments&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Assignments&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;&lt;colgroup&gt;&#xA;&lt;col width=&#34;30%&#34; /&gt;&#xA;&lt;col width=&#34;13%&#34; /&gt;&#xA;&lt;col width=&#34;8%&#34; /&gt;&#xA;&lt;col width=&#34;38%&#34; /&gt;&#xA;&lt;col width=&#34;9%&#34; /&gt;&#xA;&lt;/colgroup&gt;&#xA;&lt;thead&gt;&#xA;&lt;tr class=&#34;header&#34;&gt;&#xA;&lt;th align=&#34;left&#34;&gt;ID&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Suggested Deadline&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Description&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Invitation Link&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Solution&lt;/th&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q1/hw01&#34;&gt;hw01&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-04-13 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Setup&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/z4BiTzo1&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Not Provided&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q1/hw02&#34;&gt;hw02&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-04-20 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;PWT&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/RUF6Ghra&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q1/hw03&#34;&gt;hw03&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-04-27 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Euler&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/I1ZvLWcG&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q1/hw04&#34;&gt;hw04&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-05-11 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Graph&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/Kp2NHBEA&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q1/hw05&#34;&gt;hw05&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-05-18 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Final&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/t7hPULXZ&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;All assignments must be submitted through GitHub.&#xA;&lt;strong&gt;Always start an assignment with the “Get Invitation” link in the above portal site&lt;/strong&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Macroeconomics (2018Q3)</title>
      <link>https://www.kenjisato.jp/en/teaching/ma/2018q3/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://www.kenjisato.jp/en/teaching/ma/2018q3/</guid>
      <description>&lt;div id=&#34;q3-macroeconomics-kobe-univ.&#34; class=&#34;section level1&#34;&gt;&#xA;&lt;h1&gt;2018 Q3 Macroeconomics (Kobe Univ.)&lt;/h1&gt;&#xA;&lt;div id=&#34;course-material&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Course material&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;&lt;colgroup&gt;&#xA;&lt;col width=&#34;13%&#34; /&gt;&#xA;&lt;col width=&#34;30%&#34; /&gt;&#xA;&lt;col width=&#34;55%&#34; /&gt;&#xA;&lt;/colgroup&gt;&#xA;&lt;thead&gt;&#xA;&lt;tr class=&#34;header&#34;&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Date&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Slides&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Handouts&lt;/th&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 2&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day01/day01.html&#34;&gt;Day 01&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-A.pdf&#34;&gt;A&lt;/a&gt;, &lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-B.pdf&#34;&gt;B&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 5&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day02/day02.html&#34;&gt;Day 02&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-C.pdf&#34;&gt;C&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 9&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day03/day03.html&#34;&gt;Day 03&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-D.pdf&#34;&gt;D&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 12&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day04/day04.html&#34;&gt;Day 04&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-E.pdf&#34;&gt;E&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 16&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day05/day05.html&#34;&gt;Day 05&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 19&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 06&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-F.pdf&#34;&gt;F&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 23&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day07/day07.html&#34;&gt;Day 07&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 26&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 08 (Midterm Exam)&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;October 30&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day09/day09.html&#34;&gt;Day 09&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;November 2&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day10/day10.html&#34;&gt;Day 10&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-G.pdf&#34;&gt;G&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;November 6&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day11/day11.html&#34;&gt;Day 11&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-H.pdf&#34;&gt;H&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;November 9&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 12&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-I.pdf&#34;&gt;I&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;November 13&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day13/day13.html&#34;&gt;Day 13&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;November 16&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/day14/day14.html&#34;&gt;Day 14&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://rokko-ma18q3.github.io/material/handouts/ma18q3-J.pdf&#34;&gt;J&lt;/a&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;November 27&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Day 15 (Final Exam)&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;The slides and handouts for 2017Q4 are available [here](https://www.kenjisato.jp/en/teaching/ma/2017q4/).&lt;/p&gt;&#xA;&lt;/div&gt;&#xA;&lt;div id=&#34;assignments&#34; class=&#34;section level2&#34;&gt;&#xA;&lt;h2&gt;Assignments&lt;/h2&gt;&#xA;&lt;table&gt;&#xA;&lt;colgroup&gt;&#xA;&lt;col width=&#34;17%&#34; /&gt;&#xA;&lt;col width=&#34;22%&#34; /&gt;&#xA;&lt;col width=&#34;13%&#34; /&gt;&#xA;&lt;col width=&#34;31%&#34; /&gt;&#xA;&lt;col width=&#34;14%&#34; /&gt;&#xA;&lt;/colgroup&gt;&#xA;&lt;thead&gt;&#xA;&lt;tr class=&#34;header&#34;&gt;&#xA;&lt;th align=&#34;left&#34;&gt;ID&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Suggested Deadline&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Description&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Invitation Link&lt;/th&gt;&#xA;&lt;th align=&#34;left&#34;&gt;Solution&lt;/th&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/thead&gt;&#xA;&lt;tbody&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q3/hw01&#34;&gt;hw01&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-10-09 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Setup&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/TfCjHNvj&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Not Provided&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q3/hw02&#34;&gt;hw02&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-10-16 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;PWT&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/0p7_9UtF&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q3/hw03&#34;&gt;hw03&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-10-23 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Euler&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/AglZmqwX&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;even&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q3/hw04&#34;&gt;hw04&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-11-06 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Graph&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/p6-pu_n7&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;tr class=&#34;odd&#34;&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://github.com/rokko-ma18q3/hw05&#34;&gt;hw05&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;2018-11-20 18:00:00&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;Final&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;&lt;a href=&#34;https://classroom.github.com/a/ozu4GHOH&#34;&gt;Get Invitation&lt;/a&gt;&lt;/td&gt;&#xA;&lt;td align=&#34;left&#34;&gt;NA&lt;/td&gt;&#xA;&lt;/tr&gt;&#xA;&lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;p&gt;All assignments must be submitted through GitHub.&#xA;&lt;strong&gt;Always start an assignment with the “Get Invitation” link in the above portal site&lt;/strong&gt;.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
