Matplotlib: Add single dot at X/Y coordinates

In order to add a single dot at a specific X/Y coordinate in a Matplotlib plot, you can just use ax.plot() with a single X/Y pair and marker='o':

ax.plot(x_tangent, y_tangent, marker='o', color='blue', markersize=10)