Hello,
I've used the Mathematica 10.1 for the first time today. My initial reasoning was to solve a polynomial with 5 roots. My issue is I don't know how to apply the output with a '#1' symbol. How would I visualize this as standard form?
IN:
Solve[((A (120 x^5 - 300 x^4 + 200 x^3) - 20 B) U)/(
F^5 X^5 (1 - X)^5) + ((C (120 x^5 - 300 x^4 + 200 x^3) - 20 D) V)/(
F^5 X^5 (1 - X)^5) == 0, x]
OUT:
{{x -> Root[-B U -
D V + (10 A U + 10 C V) #1^3 + (-15 A U -
15 C V) #1^4 + (6 A U + 6 C V) #1^5 &, 1]}, {x ->
Root[-B U -
D V + (10 A U + 10 C V) #1^3 + (-15 A U -
15 C V) #1^4 + (6 A U + 6 C V) #1^5 &, 2]}, {x ->
Root[-B U -
D V + (10 A U + 10 C V) #1^3 + (-15 A U -
15 C V) #1^4 + (6 A U + 6 C V) #1^5 &, 3]}, {x ->
Root[-B U -
D V + (10 A U + 10 C V) #1^3 + (-15 A U -
15 C V) #1^4 + (6 A U + 6 C V) #1^5 &, 4]}, {x ->
Root[-B U -
D V + (10 A U + 10 C V) #1^3 + (-15 A U -
15 C V) #1^4 + (6 A U + 6 C V) #1^5 &, 5]}}
I would like to select root 1:
X = -B U - D V + (10 A U + 10 C V) #1^3 + (-15 A U - 15 C V) #1^4 + (6 A U + 6 C V) #1^5
Provided the unknowns { B, U, D, V, A, C }
Thank you for your time.