Re: Solve fails with this simple inequality problem
- To: mathgroup at smc.vnet.net
- Subject: [mg115662] Re: Solve fails with this simple inequality problem
- From: Valeri Astanoff <astanoff at gmail.com>
- Date: Tue, 18 Jan 2011 05:46:29 -0500 (EST)
- References: <iguirr$8u0$1@smc.vnet.net>
On Jan 16, 11:55 am, KenR <ramsey2... at msn.com> wrote: > Solve[Meter = Floor[Sqrt[19]+7] && Meter < 6, Meter] gives a null "{}" > Any workarounds? No, but if it were solvable, you could do it this way (just an example) : In[1]:= Reduce[m == Floor[Sqrt[19] + 7] && m < 14, m, Integers] Out[1]= m == 11 -- Valeri