If I am understanding the problem, we have triangle ABC where CB is 45 units, BA is 43 units, and CA = b is unknown. Also angle at vertex B is 88 degrees. The requirement is to find the other components of the triangle.
-----------------------------------------------------------------------
We need some better terminology for the problem:
Let the triangle is ABC, the angles A, B and C, and the sides a, b and c where side a is opposite angle A, side b is opposite angle B and side c is opposite angle C. Now we can restate the problem as:
In triangle ABC, side a is 45 units, side c is 43 units, and angle B is 88 degrees. Find the other components.
The law of cosines is a generalization of the pythagorean theorem that applies to all triangles, not only right triangles.
The law of cosines states that for any side of a triangle b, b2 = a2 + c2 -2*a*c*cos(angle B). For any triangle there are three equations like this one, which give a formula to compute each side of a triangle based on the other two sides and the included angle.
so b2= (45)2 + (43)2 -2*45*43*cos(88 degrees),
and b = sqrt((45)2 + (43)2 -2*45*43*cos(88 degrees)).
Now we know the tree sides of the triangle, so we can compute the other two angles with either the Law of Cosines or the Law of Sines.
Example using the law of cosines:
a2 = b2 + c2 -2*b*c*cos(angle A),
so cos(angle A) = (b2 + c2 - a2)/2bc
Example using the law of sines:
sin(angle B)/b = sin(angle A)/a, and it follows that
sin(88 degrees)/sqrt((45)2 + (43)2 -2*45*43*cos(88 degrees)) = sin(angle A)/45,
so sin(angle A) = 45*sin(88 degrees)/sqrt((45)2 + (43)2 -2*45*43*cos(88 degrees))
You can find angle C the same way.