Top answers


Examine the extent to which the President's power is the power to persuade

Originally claimed by Richard Neustadt, it can be argued that the President's power is in the power to persuade due to the lack of constitutional powers. The constitution gives legislative powers to Congress...
TH
16700 Views

How do I find and plot the roots of a polynomial with complex roots on an Argand diagram? e.g. f(z) =z^3 -3z^2 + z + 5 where one of the roots is known to be 2+i

For a polynomial with real coefficients, use that roots come in complex conjugate pairs. Therefore, another root is 2-i (and we know for this example that the final root must be real). Write the factorised f...
ES
6209 Views

There are 14 boys in a class and 16 girls. The Mean height of the class is 1.6m, the mean of the girls is 1.5m what is the mean height of the boys?

Mean for all students: (the sum of all the heights)/total number of students = (the sum of boys+sum of girls)/30 = 1.6sum of boys and girls = 1.6 x 30Mean for girls: (the sum of all the girls' heights)/total...
CJ
Answered by Caitlin J. Maths tutor
5121 Views

How does an action potential travel across a cholergenic synapse?

An action potential arrives at synaptic knob. This causes voltage-gated Ca2+ ion channels to open, resulting in an influx of Ca2+ ions diffusing into the synaptic knob. This then causes vesicles containing a...
VF
Answered by Victoria F. Biology tutor
2943 Views

Implement a fibonacci function which calculates the nth number of the fibonacci sequence.

def fib(n): if n <= 1: return n else: return(fib(n-1) + fib(n-2)) This is the code for a very basic version. This coud be used to explain how recursion works thanks to a relatively easy example.
AF
Answered by Atom F. Python tutor
1789 Views