ubuntu2204
Kernel: SageMath 10.0
Introduction to Jupyter Notebooks Assignment
Question 1
[1 point] Compute the following using CoCalc (all the numbers in the question should appear in your answer - don't simplify in your head). Make sure you have enough parentheses to get the order of operations right.
Part a
In [6]:
Out[6]:
-17/3
In [0]:
Part b
In [9]:
Out[9]:
262141
In [0]:
Question 2
[4 points] Find decimal approximations for the following expressions using CoCalc.
[Hint: Use the N() command to convert to decimal -- N stands for "numerical approximation"]
Part a
In [10]:
Out[10]:
sqrt(5)*sqrt(sin(2187))
Part b
In [17]:
Out[17]:
arcsin(1/3)*log(2)
In [0]:
Part c
In [30]:
Out[30]:
cos(1/7*pi) - log(12)
In [0]:
Part d
ParseError: KaTeX parse error: Double superscript at position 3: ^4^̲4\displaystyle\…
In [34]:
Out[34]:
Cell In [34], line 1
sqrt[Integer(8)]{Integer(1200)}+(Integer(2))cdot e**{Integer(4)/Integer(3)}
^
SyntaxError: invalid syntax
Question 3
[5 points] Consider the functions
Part a
Define and . Don't forget you need explicit multiplications and parentheses for the fraction in g(t).
In [40]:
Part b
Calculate
In [43]:
Out[43]:
153
Part c
Calculate
[Hint: don't forget to declare to be a variable]
In [48]:
Out[48]:
3*(x + 1)^2 - 3*x^2 - 5
Part d
Calculate
In [49]:
Out[49]:
41/3973
Part e
Calculate
In [50]:
Out[50]:
(2*t - 25)/(9*(t - 12)^2 + 4)
In [0]: