Tagged Questions
3
votes
5answers
564 views
Solving an inequality for minimum value
I'm working on a programming problem which boils down to a set of an equation and inequality:
x[0]*a[0] + x[1]*a[1] + ... x[n]*a[n] >= D
x[0]*b[0] + x[1]*b[1] + ... x[n]*b[n] = C
I want to ...
1
vote
4answers
161 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 ...