<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://richardwong.rice.edu/feed.xml" rel="self" type="application/atom+xml" /><link href="https://richardwong.rice.edu/" rel="alternate" type="text/html" /><updated>2026-01-09T22:49:27-06:00</updated><id>https://richardwong.rice.edu/feed.xml</id><title type="html">Richard Wong</title><subtitle>Assistant Teaching Professor in Mathematics at Rice University.</subtitle><author><name>Richard Wong</name></author><entry><title type="html">Spring 2026</title><link href="https://richardwong.rice.edu/teaching/26S/" rel="alternate" type="text/html" title="Spring 2026" /><published>2026-01-12T00:00:00-06:00</published><updated>2026-01-12T00:00:00-06:00</updated><id>https://richardwong.rice.edu/teaching/26S</id><content type="html" xml:base="https://richardwong.rice.edu/teaching/26S/"><![CDATA[<p>This semester, I will be teaching <a href="/teaching/math-102">Math 102</a> and Math 232 (Honors Multivariable Calculus).</p>

<p class="notice--info"><strong>If you are interested in taking Math 232, you should send me an email.</strong> You are welcome to attend lectures as a guest before the add/drop deadline, and you should also talk to me before/after class to be added to the course Canvas page.</p>

<!--end_excerpt-->

<h2 id="math-102-calculus-ii"><a href="/teaching/math-102">Math 102: Calculus II</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_102_Syllabus.pdf">course syllabus here</a>.</p>

<p>What tools do we have to calculate an integral like $\int_0^1 xe^{-x^2} \ dx$ or $\int_0^1 e^{-x^2} \ dx$?</p>

<p><strong>When your calculator tells you that the value of $\int_0^1 e^{-x^2} \ dx \approx 0.746824$, how do you know it’s correct?</strong> How accurate is your calculator?   Is it possible for an infinite region to have finite area?  Can we calculate the area of a fractal?</p>

<p>You’ve previously seen in Math 101 that calculus is an important and powerful tool that allows us to describe the physical world around us.  In Math 102, we will push the notion of integration to its utmost limits.  In this class, we will build our toolbox for integration; we will study the behavior of the infinite, and we will learn how to quantify how accurate our approximations are.</p>

<p>In this course, you will develop the critical thinking and questioning skills needed to answer these complex questions.  Moreover, you will become fluent in precisely communicating your ideas through the mathematical language of calculus.</p>]]></content><author><name>Richard Wong</name></author><category term="Teaching" /><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[This semester, I will be teaching Math 102 and Math 232 (Honors Multivariable Calculus). If you are interested in taking Math 232, you should send me an email. You are welcome to attend lectures as a guest before the add/drop deadline, and you should also talk to me before/after class to be added to the course Canvas page.]]></summary></entry><entry><title type="html">A quick primer on modifying existing LaTeX for digital accessibility</title><link href="https://richardwong.rice.edu/LaTeX-Accessibility-Primer/" rel="alternate" type="text/html" title="A quick primer on modifying existing LaTeX for digital accessibility" /><published>2026-01-02T00:00:00-06:00</published><updated>2026-01-02T00:00:00-06:00</updated><id>https://richardwong.rice.edu/LaTeX-Accessibility-Primer</id><content type="html" xml:base="https://richardwong.rice.edu/LaTeX-Accessibility-Primer/"><![CDATA[<p>I have been working on making my course materials (e.g. worksheets, syllabi, slides) digitally accessible over winter break.</p>

<p>This post is a guide to the packages, commands, and other tweaks that I have compiled from across various sources to make my existing TeX files compile correctly as tagged pdfs.  This post should be thought of as a supplement to <a href="https://latex3.github.io/tagging-project/">the Tagging Project</a>’s  <a href="https://latex3.github.io/tagging-project/documentation/usage-instructions">Guidelines for using LaTeX to generate accessible PDF</a>.</p>

<p>Sample tex files and materials are <a href="#sample-materials">included below</a>, and I have <a href="https://webaim.org/articles/voiceover/">checked that they are parsed correctly by VoiceOver</a> (Apple’s built-in screen reader), and also pass the tests on my LMS (Canvas,  Ally Course Accessibility Report).</p>

<p><strong>DISCLAIMER:</strong> I am not an expert on accessibility nor an expert in the inner workings of TeX, and this post is not legal advice, nor it is a guarantee that your documents will automatically satisfy any or all accessibility standards or legal regulations.</p>

<!--end_excerpt-->

<h1 id="context">Context</h1>

<p>If you are interested in learning more about digital accessibility in regards to mathematics, a good reference to get acquainted is <a href="https://arxiv.org/abs/2505.22667">Accessibility for the Working Mathematician</a> by Julius Ross.</p>

<p>The tl;dr is that making documents accessible takes work, beyond the challenge of <strong>writing appropriate alt text</strong> (see sections 3.2-3.4).  It may also require philosophical changes in <strong>how you structure your documents</strong> (see section 3.5).  You may also need to <strong>remove or replace certain classes or packages</strong> (for example, <code class="language-plaintext highlighter-rouge">beamer</code> cannot create tagged pdfs, and will need to be replaced by <a href="https://ctan.org/pkg/ltx-talk"><code class="language-plaintext highlighter-rouge">ltx-talk</code></a>).</p>

<p>My understanding is that if you were to start from scratch, many experts are recommending how to compose documents using a system that can create both HTML and pdf (and other) outputs such as <a href="https://ximera.osu.edu/">Ximera</a> or <a href="https://pretextbook.org/">PreTeXt</a>.</p>

<p>I will probably learn PreTeXt over the summer, and I definitely see the value in writing HTML output.  However, I think there is value in having accessible pdfs because they are documents that can be downloaded and used by people without a stable or reliable internet connection (or <a href="https://www.wired.com/story/the-aws-outage-was-a-nightmare-for-college-students/">when Canvas goes down</a>).</p>

<hr />

<p>Below are the modifications you will need to create digitally accessible pdfs from  your TeX files.  You can see <a href="#sample-materials">sample TeX files</a> below.</p>

<h1 id="1-change-your-compiler-to-lualatex-and-update-your-tex-version">1. Change your compiler to LuaLaTeX and update your TeX version</h1>

<p>LuaLaTeX is recommended by the tagging project; but the packages and commands detailed below should work with pdfLaTeX.  After switching to using LuaLaTeX, I saw no difference in compile times for the documents I am working on.</p>

<p>You should also make sure that you have the latest version of TeX installed (currently LaTeX 2025-11-01 as of this post).  This is important for new classes and packages being developed, such as <a href="https://ctan.org/pkg/ltx-talk?lang=en"><code class="language-plaintext highlighter-rouge">ltx-talk</code></a>.</p>

<p>If you use Overleaf, <a href="https://docs.overleaf.com/getting-started/recompiling-your-project/selecting-a-tex-live-version-and-latex-compiler">here are instructions on how to change compiler and TeX version</a>.</p>

<p><strong>Note:</strong> the distribution of TeX used by overleaf (TexLive 2025) is not as up to date as the latest distribution of TeX (e.g. it does not yet have support for <code class="language-plaintext highlighter-rouge">ltx-talk</code>, but you can opt into the <a href="https://www.overleaf.com/labs/participate">Overleaf Labs program</a> for access to newer versions of TeX).</p>

<h1 id="2-turn-on-tagging">2. Turn on tagging</h1>

<p>To create tagged pdfs from your TeX files, you should include this code in the preamble (e.g. before <code class="language-plaintext highlighter-rouge">\begin{document}</code>):</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>\DocumentMetadata{
  tagging=on,
  tagging-setup={math/setup=mathml-SE,math/alt/use}
}
</code></pre></div></div>

<p>The <code class="language-plaintext highlighter-rouge">tagging-setup={math/setup=mathml-SE,math/alt/use}</code> option turns on the necessary code for screenreaders to read mathematics (see <a href="#4-create-alt-text-for-equations">below</a>).</p>

<p>This command has other options - you can set the language (which is US English by default), the PDF standard, etc.</p>

<p><a href="https://texdoc.org/serve/documentmetadata-support-code.pdf/0">See the documentation for <code class="language-plaintext highlighter-rouge">\DocumentMetadata</code> here</a>.</p>

<h1 id="3-set-up-the-title--author">3. Set up the title &amp; author</h1>

<p>To set the title and author of the PDF, you should include this code in the preamble:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>\usepackage{hyperref}
</code></pre></div></div>

<p>and you should include this code in the body of the document (e.g. immediately after <code class="language-plaintext highlighter-rouge">\begin{document}</code>)</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>\hypersetup{
pdftitle={Spring 2026 Math 102 Syllabus},
pdfauthor={Richard Wong},
pdfdisplaydoctitle%
}
</code></pre></div></div>

<h1 id="4-create-alt-text-for-equations">4. Create alt text for equations</h1>

<p>The tagging project renders math formulas and equations using MathML, but some screenreaders (e.g. VoiceOver, Ally) treats them like images which require alt text.</p>

<p>The option <code class="language-plaintext highlighter-rouge">tagging-setup={math/setup=mathml-SE,math/alt/use}</code> in the <code class="language-plaintext highlighter-rouge">\DocumentMetaData</code> command <a href="#2-turn-on-tagging">described above</a> will automatically generate the alt text via the latex commands used.  For example, the formula  $\displaystyle \int_0^1 xe^{-x^2} \ dx$ has alt text</p>

<blockquote>
  <p>Latex formula starts <code class="language-plaintext highlighter-rouge">\begin{math} \int_0^1 xe^{-x^2} \ dx \end{math}</code> Latex formula ends</p>
</blockquote>

<p>This setup also allows screen readers to “dig in” and navigate these formulas (e.g. one can move back and forth between the bounds of integration, or different parts of the integrand).</p>

<p><strong>Note:</strong> Because the alt text currently repeats verbatim the latex commands used, you should be careful about the macros that you use.</p>

<p><a href="https://texdoc.org/serve/latex-lab-math/0">See the documentation for math content here</a>.</p>

<h1 id="5-create-alt-text-for-images">5. Create alt text for images</h1>

<p>Adding alt text to images is easy - simply use the alt-text options in <code class="language-plaintext highlighter-rouge">\includegraphics</code>:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>\includegraphics[alt={A picture of me and Ernie}]{ernie_mueller2020.jpg} 
</code></pre></div></div>

<p>However, in my opinion, <strong><em>writing</em> appropriate alt text</strong> is the most difficult part of making your documents accessible.</p>

<p>Especially in the context of teaching, writing alt text requires you to think carefully about the pedagogical intent of the image. (see <a href="https://arxiv.org/abs/2505.22667">Ross 3.2-3.4</a>)</p>

<p>THe AMS, EMS, LMS, and SIAM also recently published <a href="https://epubs.siam.org/pb-assets/author_guidelines_accessible_mathematics.pdf">Author Guidelines for Preparing Accessible Mathematics Content</a>, which set standards for labeling complex math diagrams (with examples).</p>

<h1 id="6-label-table-headers">6. Label table headers</h1>

<p>To indicate the headers of the table, you can include this code immediately before the relevant table:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>\tagpdfsetup{table/header-rows={1}}
</code></pre></div></div>

<p><a href="https://texdoc.org/serve/latex-lab-table/0">See the documentation for tables here</a>.</p>

<h1 id="7-check-headings-and-navigation">7. Check headings and navigation</h1>

<p>This is another challenge of making accessible documents - you should make sure that your existing documents use headings (e.g. <code class="language-plaintext highlighter-rouge">\section</code> or <code class="language-plaintext highlighter-rouge">\subsection</code>, etc.) appropriately.</p>

<p>That is, you should make sure your document does not use purely visual commands (e.g. <code class="language-plaintext highlighter-rouge">\textbf</code>, <code class="language-plaintext highlighter-rouge">\Large</code>, etc.) to indicate headings or sections.</p>

<p>Otherwise, the command <code class="language-plaintext highlighter-rouge">\DocumentMetadata</code> <a href="#2-turn-on-tagging">described above</a> will take care of the tagging.</p>

<h1 id="8-check-package-compatibility">8. Check package compatibility</h1>

<p>If you are still encountering errors (which is likely), you should check package compatibility with <a href="https://latex3.github.io/tagging-project/tagging-status/">the Tagging Project’s compatibility tracker</a>.</p>

<p>A lot of packages are currently supported, but some packages are not supported yet (for example, packages like <code class="language-plaintext highlighter-rouge">titlesec</code>).</p>

<p>Other packages will never be supported due to the way the package works (e.g. <code class="language-plaintext highlighter-rouge">beamer</code>).  In that case, you should look to alternatives (e.g. <code class="language-plaintext highlighter-rouge">ltx-talk</code>).</p>

<h1 id="sample-materials">Sample Materials</h1>

<p>A worksheet for the second day of Calc II:</p>

<ul>
  <li><a href="/assets/materials/02_mad_minute.tex">tex file</a></li>
  <li><a href="/assets/materials/02_mad_minute.pdf">tagged pdf</a></li>
</ul>

<p>A syllabus for Calc II:</p>

<ul>
  <li><a href="/assets/materials/Math_102_Syllabus.tex">tex file</a></li>
  <li><a href="/assets/syllabus/Math_102_Syllabus.pdf">tagged pdf</a></li>
</ul>]]></content><author><name>Richard Wong</name></author><category term="Rice" /><summary type="html"><![CDATA[I have been working on making my course materials (e.g. worksheets, syllabi, slides) digitally accessible over winter break. This post is a guide to the packages, commands, and other tweaks that I have compiled from across various sources to make my existing TeX files compile correctly as tagged pdfs. This post should be thought of as a supplement to the Tagging Project’s Guidelines for using LaTeX to generate accessible PDF. Sample tex files and materials are included below, and I have checked that they are parsed correctly by VoiceOver (Apple’s built-in screen reader), and also pass the tests on my LMS (Canvas, Ally Course Accessibility Report). DISCLAIMER: I am not an expert on accessibility nor an expert in the inner workings of TeX, and this post is not legal advice, nor it is a guarantee that your documents will automatically satisfy any or all accessibility standards or legal regulations.]]></summary></entry><entry><title type="html">McMurtry College Associate</title><link href="https://richardwong.rice.edu/McMurtry/" rel="alternate" type="text/html" title="McMurtry College Associate" /><published>2025-11-01T00:00:00-05:00</published><updated>2025-11-01T00:00:00-05:00</updated><id>https://richardwong.rice.edu/McMurtry</id><content type="html" xml:base="https://richardwong.rice.edu/McMurtry/"><![CDATA[<p>I’ve joined <a href="https://mcmurtry.rice.edu/">McMurtry College</a> as a faculty associate.</p>

<p>This semester, I will be having weekly lunches at West Servery on Thursdays from 12-1pm.  If you see me there, feel free to sit down and chat!</p>

<!--end_excerpt-->]]></content><author><name>Richard Wong</name></author><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[I’ve joined McMurtry College as a faculty associate. This semester, I will be having weekly lunches at West Servery on Thursdays from 12-1pm. If you see me there, feel free to sit down and chat!]]></summary></entry><entry><title type="html">Fall 2025</title><link href="https://richardwong.rice.edu/teaching/25F/" rel="alternate" type="text/html" title="Fall 2025" /><published>2025-08-25T00:00:00-05:00</published><updated>2025-08-25T00:00:00-05:00</updated><id>https://richardwong.rice.edu/teaching/25F</id><content type="html" xml:base="https://richardwong.rice.edu/teaching/25F/"><![CDATA[<p>This semester, I will be teaching <a href="/teaching/math-101">Math 101</a> and <a href="/teaching/math-102">Math 102</a>.</p>

<p>I will also be coordinating Math 102; and I am helping organize the <a href="https://docs.google.com/document/d/1OIXZH3t8LY63CGN68VTi18tdTC-FrUVz1f__hRhYY74/edit?usp=sharing">undergraduate math colloquium</a> at Rice.</p>

<!--end_excerpt-->

<h2 id="math-101-calculus-i"><a href="/teaching/math-101">Math 101: Calculus I</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_101_Syllabus.pdf">course syllabus here</a>.</p>

<p><strong>How can we describe the physical world mathematically?</strong>  How can we use mathematics to describe phenomena in physics, biology, chemistry, or other STEM fields?</p>

<p>Calculus is the mathematical language that allows us to describe and model the behavior of the physical world around us, such as the speed and acceleration at which we travel, as well as our distance and displacement; or how a population grows and changes over time; or the rate at which chemicals react or move towards equilibrium.</p>

<p>In this course, you will develop the reasoning and questioning skills needed to explore these concepts mathematically.  Moreover, you will become fluent in communicating your ideas through the mathematical language of calculus.</p>

<h2 id="math-102-calculus-ii"><a href="/teaching/math-102">Math 102: Calculus II</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_102_Syllabus.pdf">course syllabus here</a>.</p>

<p>What tools do we have to calculate an integral like $\int_0^1 xe^{-x^2} \ dx$ or $\int_0^1 e^{-x^2} \ dx$?</p>

<p><strong>When your calculator tells you that the value of $\int_0^1 e^{-x^2} \ dx \approx 0.746824$, how do you know it’s correct?</strong> How accurate is your calculator?   Is it possible for an infinite region to have finite area?  Can we calculate the area of a fractal?</p>

<p>You’ve previously seen in Math 101 that calculus is an important and powerful tool that allows us to describe the physical world around us.  In Math 102, we will push the notion of integration to its utmost limits.  In this class, we will build our toolbox for integration; we will study the behavior of the infinite, and we will learn how to quantify how accurate our approximations are.</p>

<p>In this course, you will develop the critical thinking and questioning skills needed to answer these complex questions.  Moreover, you will become fluent in precisely communicating your ideas through the mathematical language of calculus.</p>]]></content><author><name>Richard Wong</name></author><category term="Teaching" /><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[This semester, I will be teaching Math 101 and Math 102. I will also be coordinating Math 102; and I am helping organize the undergraduate math colloquium at Rice.]]></summary></entry><entry><title type="html">MAA MathFest 2025</title><link href="https://richardwong.rice.edu/25Mathfest/" rel="alternate" type="text/html" title="MAA MathFest 2025" /><published>2025-08-06T00:00:00-05:00</published><updated>2025-08-06T00:00:00-05:00</updated><id>https://richardwong.rice.edu/25Mathfest</id><content type="html" xml:base="https://richardwong.rice.edu/25Mathfest/"><![CDATA[<p>I will be attending <a href="https://maa.org/event/mathfest/">MAA Mathfest 2025</a> in Sacramento, CA.</p>

<!--end_excerpt-->

<p>I will be giving <a href="/assets/slides/MMT_Mathfest_2025.pdf">a presentation</a> on Midweek Math Training at Rice.</p>

<p>I (along with <a href="https://sites.google.com/view/jpastrana">José Pastrana</a>) will also be presenting <a href="/assets/materials/2025_HHMI_Driving_Change_Mathfest_poster.pdf">a poster</a> on Year 1 of the HHMI Driving Change efforts in redesigning Calc I and II.</p>]]></content><author><name>Richard Wong</name></author><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[I will be attending MAA Mathfest 2025 in Sacramento, CA.]]></summary></entry><entry><title type="html">Spring 2025</title><link href="https://richardwong.rice.edu/teaching/25S/" rel="alternate" type="text/html" title="Spring 2025" /><published>2025-01-13T00:00:00-06:00</published><updated>2025-01-13T00:00:00-06:00</updated><id>https://richardwong.rice.edu/teaching/25S</id><content type="html" xml:base="https://richardwong.rice.edu/teaching/25S/"><![CDATA[<p>This semester, I will be teaching two sections of <a href="/teaching/math-102">Math 102</a>.</p>

<p>I will also be coordinating Math 102; and I am helping organize the <a href="https://docs.google.com/document/d/1OIXZH3t8LY63CGN68VTi18tdTC-FrUVz1f__hRhYY74/edit?usp=sharing">undergraduate math colloquium</a> at Rice.</p>

<!--end_excerpt-->

<h2 id="math-102-calculus-ii"><a href="/teaching/math-102">Math 102: Calculus II</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_102_Syllabus.pdf">course syllabus here</a>.</p>

<p>What tools do we have to calculate an integral like $\int_0^1 xe^{-x^2} \ dx$ or $\int_0^1 e^{-x^2} \ dx$?</p>

<p><strong>When your calculator tells you that the value of $\int_0^1 e^{-x^2} \ dx \approx 0.746824$, how do you know it’s correct?</strong> How accurate is your calculator?   Is it possible for an infinite region to have finite area?  Can we calculate the area of a fractal?</p>

<p>You’ve previously seen in Math 101 that calculus is an important and powerful tool that allows us to describe the physical world around us.  In Math 102, we will push the notion of integration to its utmost limits.  In this class, we will build our toolbox for integration; we will study the behavior of the infinite, and we will learn how to quantify how accurate our approximations are.</p>

<p>In this course, you will develop the critical thinking and questioning skills needed to answer these complex questions.  Moreover, you will become fluent in precisely communicating your ideas through the mathematical language of calculus.</p>]]></content><author><name>Richard Wong</name></author><category term="Teaching" /><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[This semester, I will be teaching two sections of Math 102. I will also be coordinating Math 102; and I am helping organize the undergraduate math colloquium at Rice.]]></summary></entry><entry><title type="html">SLMath Telescope Conjecture</title><link href="https://richardwong.rice.edu/SLMathTelescope/" rel="alternate" type="text/html" title="SLMath Telescope Conjecture" /><published>2024-12-09T00:00:00-06:00</published><updated>2024-12-09T00:00:00-06:00</updated><id>https://richardwong.rice.edu/SLMathTelescope</id><content type="html" xml:base="https://richardwong.rice.edu/SLMathTelescope/"><![CDATA[<p>I will be attending the workshop <a href="https://www.slmath.org/workshops/1103">Hot Topics: Life after the Telescope Conjecture</a> at SLMath in Berkeley, CA.</p>

<!--end_excerpt-->]]></content><author><name>Richard Wong</name></author><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[I will be attending the workshop Hot Topics: Life after the Telescope Conjecture at SLMath in Berkeley, CA.]]></summary></entry><entry><title type="html">Fall 2024</title><link href="https://richardwong.rice.edu/teaching/24F/" rel="alternate" type="text/html" title="Fall 2024" /><published>2024-08-26T00:00:00-05:00</published><updated>2024-08-26T00:00:00-05:00</updated><id>https://richardwong.rice.edu/teaching/24F</id><content type="html" xml:base="https://richardwong.rice.edu/teaching/24F/"><![CDATA[<p>This semester, I will be teaching <a href="/teaching/math-101">Math 101</a> and <a href="/teaching/math-102">Math 102</a>.</p>

<p>I will also be coordinating Math 102; and I am helping organize the <a href="https://docs.google.com/document/d/1OIXZH3t8LY63CGN68VTi18tdTC-FrUVz1f__hRhYY74/edit?usp=sharing">undergraduate math colloquium</a> at Rice.</p>

<!--end_excerpt-->

<h2 id="math-101-calculus-i"><a href="/teaching/math-101">Math 101: Calculus I</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_101_Syllabus.pdf">course syllabus here</a>.</p>

<p><strong>How can we describe the physical world mathematically?</strong>  How can we use mathematics to describe phenomena in physics, biology, chemistry, or other STEM fields?</p>

<p>Calculus is the mathematical language that allows us to describe and model the behavior of the physical world around us, such as the speed and acceleration at which we travel, as well as our distance and displacement; or how a population grows and changes over time; or the rate at which chemicals react or move towards equilibrium.</p>

<p>In this course, you will develop the reasoning and questioning skills needed to explore these concepts mathematically.  Moreover, you will become fluent in communicating your ideas through the mathematical language of calculus.</p>

<h2 id="math-102-calculus-ii"><a href="/teaching/math-102">Math 102: Calculus II</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_102_Syllabus.pdf">course syllabus here</a>.</p>

<p>What tools do we have to calculate an integral like $\int_0^1 xe^{-x^2} \ dx$ or $\int_0^1 e^{-x^2} \ dx$?</p>

<p><strong>When your calculator tells you that the value of $\int_0^1 e^{-x^2} \ dx \approx 0.746824$, how do you know it’s correct?</strong> How accurate is your calculator?   Is it possible for an infinite region to have finite area?  Can we calculate the area of a fractal?</p>

<p>You’ve previously seen in Math 101 that calculus is an important and powerful tool that allows us to describe the physical world around us.  In Math 102, we will push the notion of integration to its utmost limits.  In this class, we will build our toolbox for integration; we will study the behavior of the infinite, and we will learn how to quantify how accurate our approximations are.</p>

<p>In this course, you will develop the critical thinking and questioning skills needed to answer these complex questions.  Moreover, you will become fluent in precisely communicating your ideas through the mathematical language of calculus.</p>]]></content><author><name>Richard Wong</name></author><category term="Teaching" /><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[This semester, I will be teaching Math 101 and Math 102. I will also be coordinating Math 102; and I am helping organize the undergraduate math colloquium at Rice.]]></summary></entry><entry><title type="html">Joining Rice University</title><link href="https://richardwong.rice.edu/Rice/" rel="alternate" type="text/html" title="Joining Rice University" /><published>2024-07-01T00:00:00-05:00</published><updated>2024-07-01T00:00:00-05:00</updated><id>https://richardwong.rice.edu/Rice</id><content type="html" xml:base="https://richardwong.rice.edu/Rice/"><![CDATA[<p>I am excited to join the Rice University Department of Mathematics as an assistant teaching professor.</p>

<p>I am part of a cluster hire in the <a href="https://news.rice.edu/news/2023/rice-receives-25m-grant-support-inclusive-stem-education">HHMI Driving Change initiative</a>.  In particular, we are currently focusing on how calculus is taught at Rice.</p>

<!--end_excerpt-->]]></content><author><name>Richard Wong</name></author><category term="Rice" /><category term="Activities" /><summary type="html"><![CDATA[I am excited to join the Rice University Department of Mathematics as an assistant teaching professor. I am part of a cluster hire in the HHMI Driving Change initiative. In particular, we are currently focusing on how calculus is taught at Rice.]]></summary></entry><entry><title type="html">Spring 2024</title><link href="https://richardwong.rice.edu/teaching/24S/" rel="alternate" type="text/html" title="Spring 2024" /><published>2024-03-25T00:00:00-05:00</published><updated>2024-03-25T00:00:00-05:00</updated><id>https://richardwong.rice.edu/teaching/24S</id><content type="html" xml:base="https://richardwong.rice.edu/teaching/24S/"><![CDATA[<p>This quarter, I will be teaching <a href="/teaching/math-115a">Math 115A (Linear Algebra)</a>.</p>

<!--end_excerpt-->

<h2 id="math-115a-linear-algebra"><a href="/teaching/math-115a">Math 115A: Linear Algebra</a></h2>

<p>You can find the <a href="/assets/syllabus/Math_115A_Syllabus.pdf">course syllabus here</a>.</p>

<p><strong>What does it mean to prove a theorem?</strong>  Why are the theorems you saw in Math 33A true?  How do we generalize the properties of $\mathbb{R}^n$ as a vector space over $\mathbb{R}$?</p>

<p>115A is the <em>second</em> course in linear algebra.  In math 33A, you learned the computational tools of linear algebra in $\mathbb{R}^n$. In math 115A, you will learn how to prove the theorems and tools you saw in 33A.  Moreover, you will generalize these theorems to the setting of abstract vector spaces.</p>

<p>115A may also be your first exposure to mathematical proofs.  In other words, this course will help you develop the mathematical reasoning and questioning skills needed to explore abstract mathematical concepts. Moreover, you will become fluent in communicating your mathematical ideas, and you will develop the ability to prove (or find counterexamples) to mathematical statements.</p>

<p>This course provides the foundation for exploring other topics in advanced mathematics.</p>]]></content><author><name>Richard Wong</name></author><category term="Teaching" /><category term="UCLA" /><category term="Activities" /><summary type="html"><![CDATA[This quarter, I will be teaching Math 115A (Linear Algebra).]]></summary></entry></feed>