Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3347498
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:25:43+00:00 2026-05-18T01:25:43+00:00

I am using Mathematica 7 in the notebook interface and I want to rearrange

  • 0

I am using Mathematica 7 in the notebook interface and I want to rearrange an inequality so that I get a certain variable on one side. For eg.

FullSimplify[x^3+L+r>3x^3+2r]

Gives

L > r + 2 x^3

However, I want :

r < L-2x^3

Is there anyway we can instruct FullSimplify to order variables in a particular way? I am using Mathematica for presentation as well so, the way I arrange the variables is important to me.

Thanks

SR

Edit: I tried Reduce, while that works for this example, it does not work for the actual expression I have, I get an error saying,

 This system cannot be solved with the methods available to Reduce.

Edit: here is the actual expression:

{L - (m^2 ((-2 + e)^2 \[Delta] + (5 + 
     2 e (-7 + 4 e)) \[Tau]) \[Omega])/(36 (2 - 3 e + e^2)^2)} > {0}

I want this to be displayed in the form of \[delta]< *something*
Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T01:25:44+00:00Added an answer on May 18, 2026 at 1:25 am

    First of all, getting Mathematica to output something exactly as you would like it is something of a black art, and requires a lot of patience. That said, if you apply Reduce to your original expression, as per Belisarius, you’d get

    In[1]:=Reduce[x^3 + L + r > 3 x^3 + 2 r, r, Reals]
    Out[1]:= r < L - 2 x^3
    

    However, as you pointed out, this isn’t the full expression, and Reduce produces what can only be described as a less than helpful answer when applied to it. It is at this point where patience and a lot of extra processing is required. I’d start with

    In[2]:=Reduce[ <full expression>, Delta, Reals] // LogicalExpand // Simplify
    

    While this doesn’t give you a clean answer, it is better than before and reveals more of the structure of your solution. (I would not use FullSimplify as that mixes Delta in with the other terms.) At this point, we need to know more about the terms themselves, and the output from In[2] is not quite as useful as we want.

    I’d re-expand this with LogicalExpand which gives you twelve terms that are significantly simpler than the what Reduce alone gives. (You’ll note that only the last six terms actually involve Delta, so I’d check that the variable conditions actually match those.) Selecting those last six terms only,

    In[3]:=%2[[-6;;]] // Simplify
    Out[3]:= m != 0 
           && ((Omega > 0 && Delta < something) || (Omega > 0 && Delta < something else)
           && (1 < e < 2 || e < 1 || e > 2)
    

    The third term is tautological, but Simplify nor FullSimplify can’t seem to remove it. And we’re really only interested in the middle term anyway. If Omega > 0 your expression can then be extracted via %[[2,1,2]].

    Putting this all together in one expression:

    In[4]:=Simplify[LogicalExpand[Reduce[<expression>, Delta, Reals]]][[-6;;]] //
           Simplify // #[[2,1,2]]&
    Out[4]:= Delta < something
    

    After writing that out, I realized that there is a much simpler way to approach this. I’d redo line 2, above, as follows:

    In[5]:= Reduce[ <full expression>, Delta, Reals] // LogicalExpand // Simplify //
           Cases[#, ___ && Delta < _ && ___, Infinity]&
    Out[5]:= {Omega > 0 && Delta < something}
    

    Or, provided you really do know that m != 0 and Omega > 0 you can do

    In[6]:= Reduce[ <expr> && m!=0 && Omega > 0, Delta, Reals ] // LogicalExpand // 
            Simplify // #[[2]]&
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am doing a computing-intensive benchmark using Mathematica and its J/Link Java interface. The
Using ASP.NET MVC there are situations (such as form submission) that may require a
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
Using C#, I need a class called User that has a username, password, active
Can anybody recommend a pattern for unit-testing code within a Mathematica notebook ? I
How can I get Mathematica to export/save/write a text file with proper Fortan77 formatting,
I'm trying to use Mathematica's NDSolve[] to compute a geodesic along a sphere using
I'm using Mathematica 7. I have an interpolated function, here's an example: pressures =
I have a script that appends some rows to a table. One of the
Currently i am working on a desktop application which consists mathematical analysiss.I am using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.