Message Boards Message Boards

0
|
3420 Views
|
8 Replies
|
1 Total Likes
View groups...
Share
Share this post:

Solving two equations using Wolfram|Alpha?

Hello, I am trying to Solve these two equations on WOLFRAM for x and y, but I couldn't

2 ((L x^3)/12 + L x (W/2 - x/2)^2) + ((W - 2 x)^3 y)/6 == B

2 (((W - 2 x) y^3)/12 + (W - 2 x) y (L/2 - y/2)^2) + (x L^3)/6 == A

Can anyone guide me on how to do that? Thanks in Advance.

POSTED BY: Raghed Arnouk
8 Replies

Thanks A lot

POSTED BY: Raghed Arnouk
Posted 2 years ago

WolframAlpha understands this input

solve {2 (L x^3/12+L x (W/2-x/2)^2)+(W-2 x)^3 y/6=B, 2 (W-2 x) y^3/12+(W-2 x) y (L/2-y/2)^2+x L^3/6=A},{x,y}

and runs this way

your problem here

I eliminated all the () that I thought were not absolutely necessary to make the input a little shorter, because there is a line length limit on WA input. That may not have been absolutely necessary, but I have a personal set of rules that I use when trying to make WolframAlpha understand and work for me..

Unfortunately, the free version I am using here runs out of free time before it completes, but it does provide a lot of information about the solution before it quits.

The output includes multiple "Root" expressions. Those are a shorthand notation that Wolfram sometimes uses for roots of polynomials that are complicated enough that it sometimes can't display as simply as the two solutions to a quadratic equation. It is doing that because, instead of your problem being a quadratic equation, it appears to be in the form of 9th degree polynomials and it is trying to give you an exact expression for each of those roots, "Root" is documented here RootDocumentation

You may be able to interpret some or all of what you need from that output. If that isn't enough then you might be able to scrape all that output and try a fresh session of WA where you paste an individual Root expression and see whether that will allow you to build up individual parts of your solution and then assemble them into a complete solution.

I hope this helps.

POSTED BY: Bill Nelson

Yes Please, and if there is any other way i will be thankful

POSTED BY: Raghed Arnouk

By "WOLFRAM" do you mean "Wolfram|Alpha"?

POSTED BY: Daniel Lichtblau

I am sorry for many questions, But it is translating the word Remove and word Solve

POSTED BY: Raghed Arnouk

Hello,

it gave me this message "Assuming "solve" is a general topic | Use as a word instead"

and doesn't gave me any answer

thanks

POSTED BY: Raghed Arnouk

Try again with this code:

 ClearAll["`*"]; Remove["`*"];
Solve[{2 ((Lx^3)/12 + (Lx (W/2 - x/2)^2)) + (((W - 2 x)^3) y)/6 == B, 
2 (((((W - 2 x)) y^3)/12) + ((W - 2 x) y (L/2 - y/2)^2)) + (x*L^3)/
 6 == A}, {x, y}]
POSTED BY: Mariusz Iwaniuk

Try:

 Solve[{2 ((Lx^3)/12 + (Lx (W/2 - x/2)^2)) + (((W - 2 x)^3) y)/6 == B, 
    2 (((((W - 2 x)) y^3)/12) + ((W - 2 x) y (L/2 - y/2)^2)) + (x*L^3)/
       6 == A} , {x, y}]

 (*Big solution*)
POSTED BY: Mariusz Iwaniuk
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract