Top answers


Express the complex number (1+i)/(1-i) in the form x+iy

First of all calculate the complex conjugate of the denominator. The complex conjugate of (1-i) is 1+i.Now multiply the given complex number by (1+i)/(1+i), note that we are not modifying the starting number...
CM
10020 Views

Given a curve with parametric equations, x=acos^3(t) and y=asin^3(t), find the length of the curve between points A and B, where t=0 and t=2pi respectively.

The length of an arc between two points on a curve can be calculated in two ways; as the integral of ((dy/dx)^2 + 1)^1/2 between the values of the points, or as the integral of ((dy/dt)^2+(dx/dt)^2)^1/2 betw...
JW
5414 Views

A parabola with equation y^2=4ax for constant a is translated by the vector (2,3) to give the curve C. The curve C passes through the point (4,7), what is the value of a?

Invert the translation of (2,3) to get the parabola passing through the point (4,7)-(2,3)=(2,4). This is the same as saying that y=4 when x=2, substitute this into your equation y^2=4ax to get a=2.This will ...
GV
3296 Views

Express f(x) = ln(x+1) as an infinite series in ascending powers of x up to the 3rd power of x

Recall that the Maclaurin series for f(x) is f(x) = f(0) + f'(0)x + f''(0)x 2 /2! + ... + f (r) (0)x r /r! + ... Here f(0) = ln(1+0) = ln1 = 0 , f'(x) = 1/(1+x) using the chain rule. f'(0) = 1/1 = 1 , f''(x)...
CP
3071 Views

prove by induction that, f(n) = 2^(3n+1) + 3(5^(2n+1)) is divisible by 17 for all n>0.

With induction we start with the base case n = 1. So setting n=1 we find that f(1) = 391 which is equal to 17x23. So indeed the base case holds.We assume that for positive integers k, f(k) is divisible by 17...
MB
11395 Views