How can I best explain that the approximation of these two series is valid?
$$ e^{-t} \cos(2t) \approx 1-t $$
The test should be made by multiplying the series.
I looked at the series and am now wondering if the approximation is valid and how best to explain the behaviour of the multiplied curve (in red).
Ideally I would like to make the proof with series expansion.
$$ e^{-t} \cos(2t) (1-t) \approx e^{-t} \cos(2t) $$

The code for anyone interested:
#!/usr/bin/python3
import numpy as np
from numpy import sin, cos, tan, pi, sqrt, exp, linspace
import matplotlib.pyplot as plt
list1 = []
e = exp(1)
calcrange = 20
resolution = np.linspace(0, calcrange, 200)
for x in np.nditer(resolution):
list1.append([x, e**(-x) * cos(2*x)])
list1np = np.array(list1)
list2 = []
for x in np.nditer(resolution):
list2.append([x, 1-x])
list2np = np.array(list2)
list3 = []
for x in np.nditer(resolution):
list3.append([x, (1-x) * e**(-x) * cos(2*x)])
list3np = np.array(list3)
axes = plt.subplot(111)
axes.set_xlim(0, calcrange)
axes.set_ylim(-2, 2)
plot1 = plt.plot(list1np[:,0], list1np[:,1], label="$e^{-x} \cos(2x)$")
plot2 = plt.plot(list2np[:,0], list2np[:,1], label="$1-x$")
plot3 = plt.plot(list3np[:,0], list3np[:,1], label="$(1-x)e^{-x} \cos(2x)$")
plt.legend(prop={'size':24})
plt.show()