See also: pdf

problème 1.

The Root Mean Square (RMS) value of a signal that is periodic with period is given by the equation It can be shown that the RMS value of is

1.a

Square wave

The square wave function is defined as:

import sympy as sp
 
t = sp.symbols('t')
T = 2
 
RMS = sp.sqrt(1/T * sp.integrate(1, (t, 0, T/2)))

RMS =

1.b

Sawtooth wave

A sawtooth wave function is defined as:

import sympy as sp
 
t = sp.symbols('t')
T = 1
A = 0.5
 
f_t = 2 * A / T * (t - T/2)
 
RMS = sp.sqrt(1/T * sp.integrate(f_t**2, (t, 0, T)))

RMS =

1.c

sine wave

A general form of the sine wave can be written as

Amplitude is 2.3, no phase shift

RMS =


problème 2.

Find the cutoff frequency of the following low-pass filters.

Cutoff frequency of low-pass filters, the frequency at which the amplitude falls to

2.a

0.05Hz

2.b

approx. 1.1e05 Hz

2.c

approx 1.1Hz