Hi,
I have a complex-valued equation that turns out to be a cubic when
properly arranged. However, I'm having difficulty finding reasonably
simple closed form symbolic solutions for the roots (i.e.,
non-numerical solutions). The equation can be expressed as follows:
f1*(e1-x)/(e1+2*x) + f2*(e2-x)/(e2+2*x) + (1-f1-f2)*(e3-x)/(e3+2*x)=0
Solve for x.
If it matters, f1 and f2 are real-valued between 0 and 1. e1,e2,e3
are complex-valued, both real and imaginary components are positive.
I expect a concise expression for each of the three roots (x) without
the use of excessive substitution. By excessive substitution I mean
you shouldn't have more than 3 levels of nested substitution (i.e.,
a==b-3, b==c+1, c==e1+2). The goal is to provide a symbolic solution
for a paper I'm writing. You will receive acknowledgement (if you
desire) in addition to the pay.
If the equation is unclear, you can see a prettier version at:
http://rain.aos.wisc.edu/~jbenjam/pretty.pdf
Regards, Benjamin Johnson |
Clarification of Question by
snowkid-ga
on
04 Aug 2005 12:14 PDT
Concise implies a form that could easily fit into a few lines of
equation. The more compact the better. Answer is subject to
verification (I have the numerical solutions).
|
Request for Question Clarification by
mathtalk-ga
on
05 Aug 2005 09:27 PDT
Hi, snowkid-ga:
I'm interested as to what else is known beforehand about the parameters:
- Is f1 + f2 < 1 ?
- Can any of the parameters be zero?
Note that although you can "convert" the rational equation to a cubic
polynomial equation, this risks introducing "artifact" roots. In
general roots of the rational equation will be roots of the
polynomial, but the converse need not be true.
To illustrate this formally, consider the case where f1 = f2 = 1/3 and
each of the e's is zero. The rational equation has no solution, but
"simplifying" to a cubic polynomial yields x^3 = 0.
Even without this complication, your equation with its five parameters
is not "simpler" than the general cubic. So any explicit solution
will have at least as much content as a "closed form" solution for the
cubic equation. Your request for "a concise expression" reminds me of
Einstein's dictum that we should make things as simple as possible,
but no simpler.
regards, mathtalk-ga
|
Clarification of Question by
snowkid-ga
on
05 Aug 2005 17:43 PDT
>> - Is f1 + f2 < 1 ?
0.0 <= f1+f2 <= 1.0
although the case where f1+f2 == 0 doesn't have much physical meaning
in my model, it's mathematically possible.
e1,e2,e3 and x are complex-valued and have positive real and imaginary
components. (I don't think this will help simplify the problem, but
you may know more about this than I do.)
Thanks for taking a shot at it. I realize that the answer may be as
simple as the cubic form of the equation (which itself is several
lines), but with appropriate substitutions, it should be possible to
create something that can reasonably fit into a journal article/paper.
|
Clarification of Question by
snowkid-ga
on
08 Aug 2005 05:53 PDT
Mathtalk,
I'm already satisfied with tibcol's answer, so please don't continue
unless you can come up with a much more simplified or elegant
solution. FWIW, I've already spotted the typographical errors in
tibcol's answer and corrected those.
Something that I didn't mention in the original question is that the
equation describes a method for obtaining an "effective" dielectric
permittivity (x) for a particle composed of three components
(e1,e2,e3) terms (for example a hailstone composed of ice, water, and
air). In general this can be extended to N terms. In physics this is
sometimes called the Bruggeman method or Effective Medium Theory.
sum_(i=1:N) f_i (e_i - x)/(e_i + 2*x) = 0
where sum_(i=1:N) f_i = 1.
It's very difficult (for me) to find a general expression for the average
dielectric permittivity "x" in the general case, I'm not even sure it's
possible! The motivation for doing so is programming convenience, so
it's not critical. However, I do believe that a general form exists
to solve this kind of problem based on similar types of problems.
|