Tagged Questions
3
votes
4answers
704 views
How to solve a system of inequalities?
I've reduced my problem (table layout algorithm) to the following problem:
Imagine I have N variables X1, X2, ..., XN. I also have some (undetermined) number of inequalities, like:
X1 >= 2
x2 + X3 ...
1
vote
4answers
146 views
how do you solve this logarithmic inequality in an efficient way?
The inequality is: nlogn <= a (n is natural number, log is based of 10). Question: what is the maximum value of n possible?
My solution is to scan n = 1 to infinity (step 1) until getting to the ...