<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008</link>
    <title>MATLAB Central Newsreader - algebraic problem, no explicit solution</title>
    <description>Feed for thread: algebraic problem, no explicit solution</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2008 by The MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>The MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Mon, 18 Feb 2008 17:59:01 -0500</pubDate>
      <title>algebraic problem, no explicit solution</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008#415827</link>
      <author>Michael Snyder</author>
      <description>I have a well known physics equation (dipole field) and I&amp;#8217;m&lt;br&gt;
trying to solve for constant values.  I can fill an array&lt;br&gt;
with values and have Matlab plot the constant values very&lt;br&gt;
easily. Wanted to solve the equation for a single constant&lt;br&gt;
value and make it into a function that plots one curve at a&lt;br&gt;
time.&lt;br&gt;
&lt;br&gt;
i.e.  k=.002 is a curved line and k=.03 is a different&lt;br&gt;
curved line.&lt;br&gt;
&lt;br&gt;
x1 y1 z1, x2 y2 z2 are fixed foci points.&lt;br&gt;
&lt;br&gt;
k is a given value, I just want to solve for y in terms of x&lt;br&gt;
and z. &lt;br&gt;
&lt;br&gt;
--------------------------------------&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt; syms x x1 x2 y y1 y2 z z1 z2 k K&lt;br&gt;
&lt;br&gt;
&amp;gt;&amp;gt;&lt;br&gt;
K=1/((x-x2)^2+(y-y2)^2+(z-z2)^2)^(1/2)-1/((x-x1)^2+(y-y1)^2+(z-z1)^2)^(1/2)-1/k&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;gt;&amp;gt; solve(K,y)&lt;br&gt;
&amp;nbsp;&lt;br&gt;
Warning: Explicit solution could not be found.&lt;br&gt;
&lt;br&gt;
ans =&lt;br&gt;
&lt;br&gt;
[ empty sym ]&lt;br&gt;
&lt;br&gt;
--------------------------------------&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
How can a well known algebraic equation have no explicit&lt;br&gt;
solution?  It is frustrating because I know which parameters&lt;br&gt;
plot which lines.&lt;br&gt;
&lt;br&gt;
Also I&amp;#8217;ve tried a log form and got the same results.&lt;br&gt;
&lt;br&gt;
--------------------------------------&lt;br&gt;
&lt;br&gt;
K =&lt;br&gt;
log(((x-x2)^2+(y-y2)^2+(z-z2)^2)^(1/2)-((x-x1)^2+(y-y1)^2+(z-z1)^2)^(1/2))-1/2*log((x-x1)^2+(y-y1)^2+(z-z1)^2)-1/2*log((x-x2)^2+(y-y2)^2+(z-z2)^2)-log(1/k)&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;gt;&amp;gt; solve(K,y)&lt;br&gt;
&lt;br&gt;
ans =&lt;br&gt;
&lt;br&gt;
[ empty sym ]&lt;br&gt;
&lt;br&gt;
--------------------------------------&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 19 Feb 2008 02:17:01 -0500</pubDate>
      <title>Re: algebraic problem, no explicit solution</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008#415923</link>
      <author>Roger Stafford</author>
      <description>"Michael Snyder" &amp;lt;sirzerp@mathworks.com&amp;gt; wrote in message &amp;lt;fpch15$b8o&lt;br&gt;
$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; I have a well known physics equation (dipole field) and I&amp;#8217;m&lt;br&gt;
&amp;gt; trying to solve for constant values.  I can fill an array&lt;br&gt;
&amp;gt; with values and have Matlab plot the constant values very&lt;br&gt;
&amp;gt; easily. Wanted to solve the equation for a single constant&lt;br&gt;
&amp;gt; value and make it into a function that plots one curve at a&lt;br&gt;
&amp;gt; time.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; i.e.  k=.002 is a curved line and k=.03 is a different&lt;br&gt;
&amp;gt; curved line.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; x1 y1 z1, x2 y2 z2 are fixed foci points.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; k is a given value, I just want to solve for y in terms of x&lt;br&gt;
&amp;gt; and z. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; --------------------------------------&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; syms x x1 x2 y y1 y2 z z1 z2 k K&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; &amp;gt;&amp;gt;&lt;br&gt;
&amp;gt; K=1/((x-x2)^2+(y-y2)^2+(z-z2)^2)^(1/2)-1/((x-x1)^2+(y-y1)^2+(z-z1)&lt;br&gt;
^2)^(1/2)-1/k&lt;br&gt;
&amp;gt;  &lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; solve(K,y)&lt;br&gt;
&amp;gt;  &lt;br&gt;
&amp;gt; Warning: Explicit solution could not be found.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; [ empty sym ]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; --------------------------------------&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; How can a well known algebraic equation have no explicit&lt;br&gt;
&amp;gt; solution?  It is frustrating because I know which parameters&lt;br&gt;
&amp;gt; plot which lines.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Also I&amp;#8217;ve tried a log form and got the same results.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; --------------------------------------&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; K =&lt;br&gt;
&amp;gt; log(((x-x2)^2+(y-y2)^2+(z-z2)^2)^(1/2)-((x-x1)^2+(y-y1)^2+(z-z1)^2)^&lt;br&gt;
(1/2))-1/2*log((x-x1)^2+(y-y1)^2+(z-z1)^2)-1/2*log((x-x2)^2+(y-y2)^2+&lt;br&gt;
(z-z2)^2)-log(1/k)&lt;br&gt;
&amp;gt;  &lt;br&gt;
&amp;gt; &amp;gt;&amp;gt; solve(K,y)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; ans =&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; [ empty sym ]&lt;br&gt;
-----------&lt;br&gt;
&amp;nbsp;&amp;nbsp;After playing with your equation a bit, it is clear that y can be expressed as &lt;br&gt;
the solution to an eighth degree polynomial equation in terms of the other &lt;br&gt;
quantities.  As you probably know, there is no general solution to eighth &lt;br&gt;
degree polynomial equations in terms of elementary functions, but, in theory, &lt;br&gt;
the Symbolic Toolbox could have given the solution to you in terms of roots &lt;br&gt;
of this polynomial.  I don't know why it didn't succeed in this.  My own &lt;br&gt;
primitive version of the Symbolic Toolbox ran into a limitation of string &lt;br&gt;
length since it is an early student version (1994.)  In any event, it wouldn't &lt;br&gt;
have given you the kind of explicit solution I think you were looking for &lt;br&gt;
because in all likelihood such a solution does not exist.  However, once you &lt;br&gt;
derive this polynomial, you can use matlab to solve for y numerically using &lt;br&gt;
the 'roots' function.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;I will get you started deriving the polynomial.  First, it will simplify things if &lt;br&gt;
you call&lt;br&gt;
&lt;br&gt;
&amp;nbsp;P = (x-x1)^2+(y-y1)^2+(z-z1)^2&lt;br&gt;
&amp;nbsp;Q = (x-x2)^2+(y-y2)^2+(z-z2)^2&lt;br&gt;
&lt;br&gt;
This gives us&lt;br&gt;
&lt;br&gt;
&amp;nbsp;1/sqrt(P) - 1/sqrt(Q) = 1/k &lt;br&gt;
&lt;br&gt;
&amp;nbsp;1/sqrt(P) = 1/k + 1/sqrt(Q)&lt;br&gt;
&lt;br&gt;
Square both sides:&lt;br&gt;
&lt;br&gt;
&amp;nbsp;1/P = 1/k^2 + 2/(k*sqrt(Q)) + 1/Q&lt;br&gt;
&lt;br&gt;
&amp;nbsp;2/(k*sqrt(Q)) = 1/P - 1/Q - 1/k^2&lt;br&gt;
&lt;br&gt;
Again square both side and transpose:&lt;br&gt;
&lt;br&gt;
&amp;nbsp;1/k^4-2/(k^2*P)-2/(k^2*Q)+1/P^2-2/(P*Q)+1/Q^2 = 0&lt;br&gt;
&lt;br&gt;
Multiply by k^4*P^2*Q^2:&lt;br&gt;
&lt;br&gt;
&amp;nbsp;P^2*Q^2 - 2*k^2*P*Q*(P+Q) + k^4*(P-Q)^2 = 0&lt;br&gt;
&lt;br&gt;
If you now substitute the above expressions in y in place of P and Q, and &lt;br&gt;
multiply it all out, you will see the eighth degree polynomial in y exhibited in &lt;br&gt;
all its glory.  I leave that to you.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;To solve it numerically, you need to collect like powers of y and use the &lt;br&gt;
'roots' function for specific values of (x1,y1,z1), (x2,y2,z2), x, z, and k.  In &lt;br&gt;
each case there should be eight roots altogether, but not all of them satisfy &lt;br&gt;
your original equation.  It will be your problem to sort out the real-valued &lt;br&gt;
solutions that do.&lt;br&gt;
&lt;br&gt;
Roger Stafford &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 19 Feb 2008 05:38:02 -0500</pubDate>
      <title>Re: algebraic problem, no explicit solution</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008#415945</link>
      <author>Roger Stafford</author>
      <description>"Roger Stafford" &amp;lt;ellieandrogerxyzzy@mindspring.com.invalid&amp;gt; wrote in &lt;br&gt;
message &amp;lt;fpde6t$a55$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; .....SNIP.....&lt;br&gt;
&amp;gt; If you now substitute the above expressions in y in place of P and Q, and &lt;br&gt;
&amp;gt; multiply it all out, you will see the eighth degree polynomial in y exhibited &lt;br&gt;
&amp;gt; in all its glory.  I leave that to you.&lt;br&gt;
&amp;gt; .....SNIP.....&lt;br&gt;
&amp;gt; Roger Stafford &lt;br&gt;
--------&lt;br&gt;
&amp;nbsp;&amp;nbsp;Michael, when I said, "I leave that to you", in reference to finding &lt;br&gt;
expressions for each of the coefficients of that eighth-order polynomial, I &lt;br&gt;
didn't realize how much labor it would involve doing it by hand.  (You must &lt;br&gt;
have thought I was rather cruel.)  I would recommend using your Symbolic &lt;br&gt;
Toolbox for that task instead.  Use 'subs' to substitute in &lt;br&gt;
(x-x1)^2+(y-y1)^2+(z-z1)^2 for P and (x-x2)^2+(y-y2)^2+(z-z2)^2 for Q, &lt;br&gt;
or  better still, substitute (y-y1)^2+A for P and (y-y2)^2+B for Q where A and &lt;br&gt;
B stand for (x-x1)^2+(z-z1)^2 and (x-x2)^2+(z-z2)^2, respectively.  Then &lt;br&gt;
use 'collect(-,y)' and 'simple' to get expressions for the coefficients of the &lt;br&gt;
polynomial in y from P^2*Q^2-2*k^2*P*Q*(P+Q)+k^4*(P-Q)^2.  You can &lt;br&gt;
expect these coefficient expressions to be rather long even with &lt;br&gt;
simplification.  You can use the resulting nine coefficient expressions for &lt;br&gt;
substituting in numerical values so that 'roots' can find specific solutions to &lt;br&gt;
the polynomial.  Note that you will have to use the original equation&lt;br&gt;
&lt;br&gt;
&amp;nbsp;1/sqrt(P) - 1/sqrt(Q) = 1/k&lt;br&gt;
&lt;br&gt;
to eliminate false solutions, as well as discarding the complex-valued ones.&lt;br&gt;
&lt;br&gt;
Roger Stafford&lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 19 Feb 2008 15:49:03 -0500</pubDate>
      <title>Re: algebraic problem, no explicit solution</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008#416064</link>
      <author>Michael Snyder</author>
      <description>Thank you Mr. Stafford.&lt;br&gt;
&lt;br&gt;
I'm working on it today.  Yes I am using CAS.  Both Matlab&lt;br&gt;
and Maple.&lt;br&gt;
&lt;br&gt;
Want to see something funny?  Type this command into Maple.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&amp;gt;&lt;br&gt;
solvefor[y](1/k=1/((x-x1)^2+(y-y1)^2+(z-z1)^2)^(1/2)-1/((x-x2)^2+(y-y2)^2+(z-z2)^2)^(1/2));&lt;br&gt;
&lt;br&gt;
y =&lt;br&gt;
(-2*x*x1+x1^2+y1^2-2*z*z1+z1^2+2*x*x2-x2^2-y2^2+2*z*z2-z2^2+2*k*Root\&lt;br&gt;
Of(4*x^2*y2^2-4*y1*z2^2*y2-4*x*x1*z1^2+4*y1^2*x^2-8*x^2*y2*y1-8*y1*z^2*y\&lt;br&gt;
2-4*y1*x2^2*y2-4*z1^2*y2*y1+4*x^2*x2^2-8*z*z1*x*x2+2*x1^2*y2^2-4*x*x1*y1\&lt;br&gt;
^2-4*x1^2*y2*y1-8*x*x1*z*z2+8*z*z1*y2*y1-4*_Z^7*k^3+(-24*z1^3*k^2*z+12*x\&lt;br&gt;
...&lt;br&gt;
&lt;br&gt;
You will get 41 pages of result with 25 rootof causes.&lt;br&gt;
&lt;br&gt;
Trying to solve a single line well known equation produces&lt;br&gt;
41 pages!  That probably is why Matlab didn't return a result.  &lt;br&gt;
&lt;br&gt;
BTW, I believe I want the complex roots.  I'm writing a&lt;br&gt;
paper, and some of it deals with the complex plane.    &lt;br&gt;
&lt;br&gt;
Thanks again,&lt;br&gt;
&lt;br&gt;
Michael Snyder&lt;br&gt;
&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; to eliminate false solutions, as well as discarding the&lt;br&gt;
complex-valued ones.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Roger Stafford&lt;br&gt;
&amp;gt; &lt;br&gt;
&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 19 Feb 2008 16:42:13 -0500</pubDate>
      <title>Re: algebraic problem, no explicit solution</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008#416086</link>
      <author>roberson@ibd.nrc-cnrc.gc.ca (Walter Roberson)</author>
      <description>In article &amp;lt;fpetpf$8i8$1@fred.mathworks.com&amp;gt;,&lt;br&gt;
Michael Snyder &amp;lt;sirzerp@mathworks.com&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&amp;gt;Want to see something funny?  Type this command into Maple.&lt;br&gt;
&lt;br&gt;
&amp;gt;solvefor[y](1/k=1/((x-x1)^2+(y-y1)^2+(z-z1)^2)^(1/2)-1/((x-x2)^2+(y-y2)^2+(z-z2)^2)^(1/2));&lt;br&gt;
&lt;br&gt;
"solvefor is deprecated. Please use the solve command"&lt;br&gt;
&lt;br&gt;
&amp;gt;You will get 41 pages of result with 25 rootof causes.&lt;br&gt;
&lt;br&gt;
In Maple 11, I get approximately 17200 characters of output.&lt;br&gt;
If I put spaces around the '+' and automatically reformat,&lt;br&gt;
it comes out about 300 lines. Only 4 RootOf clauses are&lt;br&gt;
involved.&lt;br&gt;
-- &lt;br&gt;
&amp;nbsp;&amp;nbsp;"The shallow murmur, but the deep are dumb." -- Sir Walter Raleigh&lt;br&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 19 Feb 2008 19:10:22 -0500</pubDate>
      <title>Re: algebraic problem, no explicit solution</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/164008#416143</link>
      <author>Roger Stafford</author>
      <description>"Michael Snyder" &amp;lt;sirzerp@mathworks.com&amp;gt; wrote in message &amp;lt;fpetpf$8i8&lt;br&gt;
$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Thank you Mr. Stafford.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I'm working on it today.  Yes I am using CAS.  Both Matlab&lt;br&gt;
&amp;gt; and Maple.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Want to see something funny?  Type this command into Maple.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; solvefor[y](1/k=1/((x-x1)^2+(y-y1)^2+(z-z1)^2)^(1/2)-1/((x-x2)^2+(y-&lt;br&gt;
y2)^2+(z-z2)^2)^(1/2));&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; y =&lt;br&gt;
&amp;gt; (-2*x*x1+x1^2+y1^2-2*z*z1+z1^2+2*x*x2-x2^2-y2^2+2*z*z2-z2^2&lt;br&gt;
+2*k*Root\&lt;br&gt;
&amp;gt; Of(4*x^2*y2^2-4*y1*z2^2*y2-4*x*x1*z1^2&lt;br&gt;
+4*y1^2*x^2-8*x^2*y2*y1-8*y1*z^2*y\&lt;br&gt;
&amp;gt; 2-4*y1*x2^2*y2-4*z1^2*y2*y1+4*x^2*x2^2-8*z*z1*x*x2&lt;br&gt;
+2*x1^2*y2^2-4*x*x1*y1\&lt;br&gt;
&amp;gt; ^2-4*x1^2*y2*y1-8*x*x1*z*z2+8*z*z1*y2*y1-4*_Z^7*k^3+&lt;br&gt;
(-24*z1^3*k^2*z+12*x\&lt;br&gt;
&amp;gt; ...&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; You will get 41 pages of result with 25 rootof causes.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Trying to solve a single line well known equation produces&lt;br&gt;
&amp;gt; 41 pages!  That probably is why Matlab didn't return a result.  &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; BTW, I believe I want the complex roots.  I'm writing a&lt;br&gt;
&amp;gt; paper, and some of it deals with the complex plane.    &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Thanks again,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Michael Snyder&lt;br&gt;
---------&lt;br&gt;
&amp;nbsp;&amp;nbsp;Michael, the whole problem becomes considerably easier if you rotate and &lt;br&gt;
translate your axes so that the midpoint of the line segment with endpoints &lt;br&gt;
(x1,y1,z1) and (x2,y2,z2) falls on the origin and the line segment is parallel to &lt;br&gt;
the new z axis.  (After all, any self-respecting dipole would want to be viewed &lt;br&gt;
in this esthetically pleasing symmetric manner.)  Then the problem can be &lt;br&gt;
expressed in cylindrical coordinates, z and r.  Your equation can be written&lt;br&gt;
&lt;br&gt;
&amp;nbsp;1/sqrt((z-a)^2+r^2) - 1/sqrt((z+a)^2+r^2) = 1/k&lt;br&gt;
&lt;br&gt;
and it is clear that we have axial symmetry about the z-axis.  The resulting &lt;br&gt;
eighth order polynomial has only even powers of z, so it can be solved as a &lt;br&gt;
fourth order polynomial in z^2.  Also the expressions for its five non-zero &lt;br&gt;
coefficients are considerably shorter.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;Here is the solution I got using my primitive Symbolic Toolbox (4a).&lt;br&gt;
&lt;br&gt;
c8 = 1;&lt;br&gt;
c6 = -4*(k^2-r^2+a^2);&lt;br&gt;
c4 = 4*(a^2-3*r^2)*k^2+2*(3*a^4-2*a^2*r^2+3*r^4);&lt;br&gt;
c2 = 16*a^2*k^4+4*(a^2-3*r^2)*(a^2+r^2)*k^2-4*(a^2-r^2)*(a^2+r^2)^2;&lt;br&gt;
c0 = (a^2+r^2)^3*(a^2+r^2-4*k^2);&lt;br&gt;
R = roots([c8,c6,c4,c2,c0]);&lt;br&gt;
z = [sqrt(R);-sqrt(R)];&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;As I mentioned earlier, not all of these eight roots will be solutions.  When I &lt;br&gt;
put in random values for a, r, and k, generally only two out of the eight z's &lt;br&gt;
were valid solutions, but as would be expected even these were not always &lt;br&gt;
real-valued.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;By the way, the solution you get using the 'collect' trick in the general case &lt;br&gt;
with arbitrary dipole orientation, though it is certainly complicated, has &lt;br&gt;
expressions for the nine coefficients that would all easily fit on one page.  &lt;br&gt;
The entire polynomial occupies just 17 lines altogether, each of which is no &lt;br&gt;
more than 80 characters long.  I would say this method is far better than &lt;br&gt;
using 'solve'.  I would not want to have done this by hand, but the result is &lt;br&gt;
quite practical to carry out with matlab computations using 'roots'.&lt;br&gt;
&lt;br&gt;
Roger Stafford&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
</description>
    </item>
  </channel>
</rss>
