It looks like a silly question, but I could not find any answers online. Your help is greatly appreciated!
Say I have two lists now.
L1={{k},{2k+1},{3k+3},{4k},{5k-4},{6k}}; L2={">0","<0",">0",">0",">0","<0"}; (*it's in string form, mathematica wont let me run >0 without quotation marks*) and I want to form a matrix like this shown as result (no string form contained)
result={{k>0},{2k+1<0},{3k+3>0},{4k>0},{5k-4>0},{6k<0}} so that I can use Reduce to find the range of k for all elements in the result list. Thanks in advance!!
