Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
2k views

Testing for inequality in T-SQL

I've just come across this in a WHERE clause: AND NOT (t.id = @id) How does this compare with: AND t.id != @id Or with: AND t.id <> @id I'd always write the latter myself, but clearly ...
9
votes
15answers
3k views

Comparing IEEE floats and doubles for equality

What is the best method for comparing IEEE floats and doubles for equality? I have heard of several methods, but I wanted to see what the community thought.
5
votes
2answers
138 views

Mathematica: finding the conditions for the real part of a complex number to be positive, unexpected/redundant output of Reduce

I need to find the conditions for the real part of a complex number to be negative. I thought Reduce would be perfect for this, but it gives redundant output (even after simplification). For example: ...
3
votes
1answer
265 views

Performance problems: Solving an inequality with several assumptions in Mathematica

I need to prove an inequality (or find a counter example) given several assumptions (also inequalities). Unfortunately the inequality to prove is a quite long and complicated expression. There are ...
3
votes
4answers
708 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 ...
3
votes
5answers
561 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 ...
2
votes
2answers
86 views

Python: Pass inequality as string in dict for evaluation

I need to pass inequalities to a function for evaluation within the function. Is there a way to evaluation the inequality if passed as a string? Or must I pass a representation of the inequality and ...
2
votes
1answer
333 views

Delphi: XOR vs <> for booleans

Is there any difference between : procedure InequalityMsg(ABool1, ABool2 : Boolean); begin if ABool1 <> ABool2 then ShowMessage('Yeah, they''re not the same'); end; and procedure ...
2
votes
2answers
77 views

event delegate (in)equality?

Could someone explain the meaning of the following portion of code : private event UserChangedHandler m_UserChanged; public event UserChangedHandler UserChanged { add { if (m_UserChanged != ...
1
vote
4answers
148 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 ...
1
vote
1answer
86 views

Erlang: join two tables not on equality pattern

Is there a way to implement SELECT * FROM pattern p JOIN tag t ON t.tag LIKE CONCAT(p.pattern, '%') AND t.type = p.type in terms of erlang qlc on top of two ets: [{{Pattern, Type}, Id}] ...
1
vote
1answer
50 views

Like PIVOT but values not discrete

A table lists multiple events where each event has four attributes (columns), call them A, B, C, P It would be simpleto pivot to get a table with columns for A, B, C, P=1, P=2, P=3, etc. However, I ...
1
vote
2answers
168 views

!(ReferenceEquals()) vs != in Entity Framework 4

Unless a class specifically overrides the behavior defined for Object, ReferenceEquals and == do the same thing... compare references. In property setters, I have commonly used the pattern private ...
1
vote
3answers
556 views

how to effectively run two inequality filters on queries in app engine

I'm aware that app engine has the restriction of "Inequality Filters Are Allowed On One Property Only" as described here: ...
1
vote
2answers
1k views

Proving that a function f(n) belongs to a Big-Theta(g(n))

Its a exercise that ask to indicate the class Big-Theta(g(n)) the functions belongs to and to prove the assertion. In this case f(n) = (n^2+1)^10 By definition f(n) E Big-Theta(g(n)) <=> c1*g(n) ...
1
vote
6answers
616 views

Which 'not equal' operator is preferable in mysql

Perhaps this is a stupid question but we've had some debate recently. Which of the two (semantically equivalent) ways is preferable to test for inequality: 'foo' != 'bar' 'foo' <> 'bar' The ...
0
votes
5answers
94 views

Is Inequality Transitive in Java?

If I have 3 objects a, b, and c, and I want to check that none of them are equal to each other, I need to check: if (!a.equals(b) && !b.equals(c) && !a.equals(c)) { // to simplify, ...
0
votes
5answers
1k views

SQL Server RowVersion/Timestamp - Comparisons

I know that the value itself for a RowVersion column is not in and of itself useful, except that it changes each time the row is updated. However, I was wondering if they are useful for relative ...
0
votes
1answer
1k views

LINQ Left Join On Not Equal Rows

Im trying to display rows which does not exist from the other table using LINQ. can anyone help me? Here is the sql im using. select * from table1 left join table2 on table1.col1 = table2.col1 ...