The problem consists of three parts: a. Given a quadratic equation $2x^2 - 4x + 5 = 0$ with roots $\alpha$ and $\beta$, find the value of $\frac{1}{\alpha} + \frac{1}{\beta}$. b. Express the complex numbers $\frac{1+i}{1-2i}$ and $\frac{2+3i}{5+i}$ in the form $a+ib$, where $a$ and $b$ are real numbers. c. Given two matrices $A = \begin{pmatrix} 1 & 2 & 1 \\ 4 & 0 & 2 \end{pmatrix}$ and $B = \begin{pmatrix} 3 & 1 & -2 \\ -4 & 5 & 2 \end{pmatrix}$, find $A-B$ and $B^T B$.

AlgebraQuadratic EquationsComplex NumbersMatricesMatrix OperationsSum and Product of Roots
2025/5/3

1. Problem Description

The problem consists of three parts:
a. Given a quadratic equation 2x24x+5=02x^2 - 4x + 5 = 0 with roots α\alpha and β\beta, find the value of 1α+1β\frac{1}{\alpha} + \frac{1}{\beta}.
b. Express the complex numbers 1+i12i\frac{1+i}{1-2i} and 2+3i5+i\frac{2+3i}{5+i} in the form a+iba+ib, where aa and bb are real numbers.
c. Given two matrices A=(121402)A = \begin{pmatrix} 1 & 2 & 1 \\ 4 & 0 & 2 \end{pmatrix} and B=(312452)B = \begin{pmatrix} 3 & 1 & -2 \\ -4 & 5 & 2 \end{pmatrix}, find ABA-B and BTBB^T B.

2. Solution Steps

a.
We are given the quadratic equation 2x24x+5=02x^2 - 4x + 5 = 0 with roots α\alpha and β\beta. We want to find the value of 1α+1β\frac{1}{\alpha} + \frac{1}{\beta}.
We can rewrite 1α+1β\frac{1}{\alpha} + \frac{1}{\beta} as α+βαβ\frac{\alpha + \beta}{\alpha \beta}.
From the quadratic equation ax2+bx+c=0ax^2 + bx + c = 0, the sum of the roots is given by ba-\frac{b}{a} and the product of the roots is given by ca\frac{c}{a}.
In our case, a=2a=2, b=4b=-4, and c=5c=5.
Therefore, α+β=42=2\alpha + \beta = -\frac{-4}{2} = 2 and αβ=52\alpha \beta = \frac{5}{2}.
So, 1α+1β=α+βαβ=252=225=45\frac{1}{\alpha} + \frac{1}{\beta} = \frac{\alpha + \beta}{\alpha \beta} = \frac{2}{\frac{5}{2}} = \frac{2 \cdot 2}{5} = \frac{4}{5}.
b.
i. We want to express 1+i12i\frac{1+i}{1-2i} in the form a+iba+ib.
Multiply the numerator and denominator by the conjugate of the denominator:
1+i12i=(1+i)(1+2i)(12i)(1+2i)=1+2i+i+2i21(2i)2=1+3i21(4)=1+3i5=15+35i\frac{1+i}{1-2i} = \frac{(1+i)(1+2i)}{(1-2i)(1+2i)} = \frac{1 + 2i + i + 2i^2}{1 - (2i)^2} = \frac{1 + 3i - 2}{1 - (-4)} = \frac{-1 + 3i}{5} = -\frac{1}{5} + \frac{3}{5}i.
ii. We want to express 2+3i5+i\frac{2+3i}{5+i} in the form a+iba+ib.
Multiply the numerator and denominator by the conjugate of the denominator:
2+3i5+i=(2+3i)(5i)(5+i)(5i)=102i+15i3i225i2=10+13i+325+1=13+13i26=1326+1326i=12+12i\frac{2+3i}{5+i} = \frac{(2+3i)(5-i)}{(5+i)(5-i)} = \frac{10 - 2i + 15i - 3i^2}{25 - i^2} = \frac{10 + 13i + 3}{25 + 1} = \frac{13 + 13i}{26} = \frac{13}{26} + \frac{13}{26}i = \frac{1}{2} + \frac{1}{2}i.
c.
i. We want to find ABA - B, where A=(121402)A = \begin{pmatrix} 1 & 2 & 1 \\ 4 & 0 & 2 \end{pmatrix} and B=(312452)B = \begin{pmatrix} 3 & 1 & -2 \\ -4 & 5 & 2 \end{pmatrix}.
AB=(13211(2)4(4)0522)=(213850)A - B = \begin{pmatrix} 1-3 & 2-1 & 1-(-2) \\ 4-(-4) & 0-5 & 2-2 \end{pmatrix} = \begin{pmatrix} -2 & 1 & 3 \\ 8 & -5 & 0 \end{pmatrix}.
ii. We want to find BTBB^T B.
First, find BTB^T, the transpose of BB:
BT=(341522)B^T = \begin{pmatrix} 3 & -4 \\ 1 & 5 \\ -2 & 2 \end{pmatrix}.
Now, compute BTBB^T B:
BTB=(341522)(312452)=(3(3)+(4)(4)3(1)+(4)(5)3(2)+(4)(2)1(3)+5(4)1(1)+5(5)1(2)+5(2)2(3)+2(4)2(1)+2(5)2(2)+2(2))=(9+16320683201+252+10682+104+4)=(251714172681488)B^T B = \begin{pmatrix} 3 & -4 \\ 1 & 5 \\ -2 & 2 \end{pmatrix} \begin{pmatrix} 3 & 1 & -2 \\ -4 & 5 & 2 \end{pmatrix} = \begin{pmatrix} 3(3) + (-4)(-4) & 3(1) + (-4)(5) & 3(-2) + (-4)(2) \\ 1(3) + 5(-4) & 1(1) + 5(5) & 1(-2) + 5(2) \\ -2(3) + 2(-4) & -2(1) + 2(5) & -2(-2) + 2(2) \end{pmatrix} = \begin{pmatrix} 9 + 16 & 3 - 20 & -6 - 8 \\ 3 - 20 & 1 + 25 & -2 + 10 \\ -6 - 8 & -2 + 10 & 4 + 4 \end{pmatrix} = \begin{pmatrix} 25 & -17 & -14 \\ -17 & 26 & 8 \\ -14 & 8 & 8 \end{pmatrix}.

3. Final Answer

a. 45\frac{4}{5}
b. i. 15+35i-\frac{1}{5} + \frac{3}{5}i
ii. 12+12i\frac{1}{2} + \frac{1}{2}i
c. i. (213850)\begin{pmatrix} -2 & 1 & 3 \\ 8 & -5 & 0 \end{pmatrix}
ii. (251714172681488)\begin{pmatrix} 25 & -17 & -14 \\ -17 & 26 & 8 \\ -14 & 8 & 8 \end{pmatrix}

Related problems in "Algebra"

We are given the equation $48x^3 = [2^{(2x)^3}]^2$ and we need to solve for $x$.

EquationsExponentsLogarithmsNumerical Solution
2025/6/20

We are asked to solve the quadratic equation $x^2 + x - 1 = 0$ for $x$.

Quadratic EquationsQuadratic FormulaRoots of Equations
2025/6/20

Solve the equation $\frac{x+1}{201} + \frac{x+2}{200} + \frac{x+3}{199} = -3$.

Linear EquationsEquation Solving
2025/6/20

The problem is to expand the given binomial expressions. The expressions are: 1. $(x + 1)(x + 3)$

Polynomial ExpansionBinomial ExpansionFOILDifference of Squares
2025/6/19

The problem is to remove the brackets and simplify the given expressions. I will solve question numb...

Algebraic ManipulationExpansionDifference of Squares
2025/6/19

We need to remove the brackets and collect like terms for the given expressions. I will solve proble...

Algebraic simplificationLinear expressionsCombining like termsDistribution
2025/6/19

The problem asks us to solve the equation $\lfloor 2x^3 - x^2 \rceil = 18x - 9$ for $x \in \mathbb{R...

EquationsCeiling FunctionReal NumbersCubic Equations
2025/6/19

The problem consists of 8 sub-problems. Each sub-problem contains an equation and a variable in pare...

Equation SolvingVariable IsolationFormula Manipulation
2025/6/19

The problem provides the equation of a parabola, $y = 3 - 2x - x^2$. We need to find the coordinates...

Quadratic EquationsParabolax-interceptTurning PointCoordinate Geometry
2025/6/19

The problem is to factorize the quadratic expression $2x^2 + 5x - 3$ completely.

Quadratic EquationsFactorizationPolynomials
2025/6/19