How to remove Head from expression
- To: mathgroup at smc.vnet.net
- Subject: [mg97787] How to remove Head from expression
- From: dragec <culinovic at gmail.com>
- Date: Sat, 21 Mar 2009 05:20:25 -0500 (EST)
Dear,
I have
Reduce[{# < 0, 0 < k < 1, b > 0}]& ....
I would like to have:
mainrules = {0 < k < 1, b > 0};
Reduce[{# < 0, mainrules}]& ....
What to apply on second argument of Reduce, to command work fine.
In above example Head of mainrules is excess, and command not works.
THX