This is a problem in decomposition of partial fractions: If the denominator on the left side can be factored, then the fraction can be written as a sum of fractions containing the individual factors. The hardest part of this problem will be factoring that denominator.
x^3 - 6x^2 + 11x - 6. The first thing I try with a polynomial with four terms is factoring by grouping; but I don't think it's possible in this case. We can do simple trial and error, possibly using long polynomial division, or synthetic division. Testing x - 1, I found that
x^3 - 6x^2 + 11x - 6 = (x - 1) (x^2 - 5x + 6)
= (x - 1) (x - 2) (x - 3).
That means we can decompose your given equation into
1/(x^3 - 6x^2 + 11x - 6) = A/(x - 1) + B/(x - 2) + C/(x - 3).
We must find A, B, and C.
Multiply both sides of the equation by the common denominator [ (x - 1) (x - 2) (x - 3)]:
1 = A(x - 2)(x - 3) + B(x - 1)(x - 3) + C(x - 1)(x - 2)
We're solving for A, B, and C, but the equation should hold true for ALL x. The trick at this point is to find the clever values of x that make it possible to identify A, B, and C. Note what happens if we let x = 1 in the equation above:
1 = A(-1)(-2) + B(0)(-2) + C(0)(-1)
1 = 2A
A = 1/2
Similarly, let x = 2 in order to isolate B:
1 = A(0)(-1) + B(1)(-1) + C(1)(0)
1 = -B
B = -1
And again, let x = 3 to isolate C:
1 = A(1)(0) + B(2)(0) + C(2)(1)
1 = 2C
C = 1/2
Thus, we have our final answer:
(1/2)/(x - 1) + -1/(x - 2) + (1/2)/(x - 3)
You can check this answer by finding the common denominator and adding the fractions back together.