Answer:
First you have to separate real and imaginary parts of Tan(x+iy)=Tan(z)=sin(z)/cos(z)
sinz=sin(x+iy)=sinxcos(iy)+cosxsin(iy)=sinxcoshy-icosx sinhy
cosz=cos(x+iy)=cosxcos(iy)-sinxsin(iy)=cosxcoshy−isinxsinhy
Now if you plug in Tan(z) and simplify (it is easy!) you get
Tan(z)=(sin(2x)+isinh(2y))/(cos(2x)+cosh(2y))= A+iB.
This means that
A=sin(2x)/(cos(2x)+cosh(2y)) and B= sinh(2y)/(cos(2x)+cosh(2y))
Now,
A/B=sin(2x)/sinh(2y)
If any questions, let me know.
Answer:
pls put a question not random letters
Explanation:
Answer:
Explanation:
The python code to generate this is quite simple to run.
i hope you understand everything written here, you can as well try out other problems to understand better.
First to begin, we import the package;
Code:
import pandas as pd
import matplotlib.pyplot as plt
name = input('Enter name of the file: ')
op = input('Enter name of output file: ')
df = pd.read_csv(name)
df['Date'] = pd.to_datetime(df["Date"].apply(str))
plt.plot(df['Date'],df['Absent']/(df['Present']+df['Absent']+df['Released']),label="% Absent")
plt.legend(loc="upper right")
plt.xticks(rotation=20)
plt.savefig(op)
plt.show()
This should generate the data(plot) as seen in the uploaded screenshot.
thanks i hope this helps!!!