Introduction

Introduction#

Welcome to the PHYS 2C course notes. This notebook demonstrates a simple Python visualization using matplotlib.

import matplotlib.pyplot as plt

plt.figure(figsize=(6, 4))
plt.plot([1, 2, 3], [1, 4, 9], 'o-')
plt.xlabel('x')
plt.ylabel('y = x²')
plt.title('Simple Parabola')
plt.grid(True)
plt.show()