Logic is about reasoning. This tag is appropriate for such things as logic programming, programming problems involving a logical system, or basic questions about the logical systems used in programming.
-6
votes
0answers
34 views
whos good with logic and java? [closed]
Im working on this text based game thats in my bluej textbook... i had some trouble with it during the school year but didn't have the time to put into it until now... Its a pretty boring and stupid ...
1
vote
1answer
36 views
Algorithm to get a point in a diagonal segment
Look at this image(sorry, I just have paint brush at my works' machine):
There you see two black rectangles, one major and one minor, inside the major. Consider they are divs. The red dots are the ...
0
votes
3answers
29 views
Generating invalid inequality combinations
This is a pretty obscure question but I thought I'd try my luck.
I need to generate invalid combinations of inequalities for a set of unknown variables.
For example, given a, b and c, I would like ...
5
votes
3answers
102 views
How do I find whether a number is positive, negative or zero without using if or for? [duplicate]
I want to implement the sign and zero flag setting in microprocessor. So I need to write a function to find whether the number is positive, negative or zero without using if or for loops and also only ...
0
votes
0answers
30 views
Click countdown application [closed]
I have implemented nothing so far because I am not sure what approach to follow
I want to implement something that apple recently did, where the user get rewarded for making request number 50 ...
0
votes
0answers
36 views
Ruby Logic Behind Rectangular Intersection Maxes and Mins
was wondering if anyone can explain to me the logic for this problem.
Specifically, why is it for this example that when we tell ruby to calculate x_min (the max of integers 1,5,2,3) we are getting 2 ...
0
votes
1answer
36 views
How compare two paired list in bash?
I'm trying to compare a remote md5sum result from some files into a server, with my local md5sum files and those that match, the hash and the filename should be removed from the local server.
The ...
0
votes
2answers
34 views
How to program the below text format logic in ruby to validate a text field
I have a text field where it accepts only the text that satisfies the below criteria:
Text format of the below type where 'A' can be any random alphabets, 'D' is any numerical digit, but last digit ...
-1
votes
2answers
32 views
Explain how prolog handles this query?
my_append([], L, L).
my_append([H|T], L, [H|NewTail]):-
my_append(T, L, NewTail).
Here is a program that can appear in my exam. The output is here:
?- my_append([1,2,5], [3,4], L).
L = [1, 2, 5, ...
2
votes
3answers
46 views
Result from Cor() in R doesn't logically evaluate as I'd expect
I'm trying to find a good way to test whether or not the correlation between two vectors is perfect (or NA.) I've tried lots of different methods, but I'm having a similar problem with all of them, ...
0
votes
0answers
27 views
Expression evaluation and optimization
I was given the following function
h = A.B' + C + B.C'.D + B.E + B'.C.D'.F
and was told to construct it in the most optimal way using only any size NOR gate and also by applying distributive law.
...
0
votes
1answer
22 views
Multithreading logic
Multihreading is way over me. I do not ask for a specific code, instead I'd like you to help me on the logical structure of my problem.
We have a restaurant with only 2 waiters, which are taking ...
-1
votes
0answers
12 views
Undecidability of detecting whether a TM has only mechanically detectable loops [closed]
This might be a bit of an abstruse question, but it's something I've been trying to prove.
I'm trying to show that it is undecidable whether a given Turing Machine is a member of the set of all ...
0
votes
0answers
14 views
Collision Detection Kit Faulting
I'm quite new to AS3. I'm using the CollisionDetectionKit rather than the hitTest methods because it's more accurate.
I've implemented the library. I don't think I understand its concept of degrees ...
-3
votes
1answer
54 views
How to separated zero with point in my bash script? [closed]
My script
echo -n "number 1 : ";
read bil1
echo -n "number 2 :";
read bil2
jlh=$(echo $bil1 + $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0' -e 's/\.0*$//');
echo " Your result : $bil1 + $bil2 ...
0
votes
1answer
40 views
Some doubts related about how work a meaning predicate that interprets the parse tree of a DCG grammar in Prolog
I am studying Prolog DCG grammar* and **parse tree on the Ivan Bratko book: "Programming for Artificial Intelligence"
I am finding some difficulties with the following example that provide a DCC ...
0
votes
0answers
13 views
ANFIS membership functions
I'm creating some ANFIS via the ANFIS MATLAB Toolbox. I have time series of inputs and target values. The if-then structure identification is done in one case using Grid Partitioning, in the other ...
0
votes
1answer
23 views
Program that “mean” a parse tree in Prolog, don't work
I am studying DCG grammar and parse tree using the Ivan Bratko book: Programming fro Artificial Intelligence.
On the book I found the following example that show a DCC grammar that also generate a ...
6
votes
1answer
168 views
Approximating pi in Perl - what am I doing wrong?
I am trying to approximate pi using the Ramanujan algorithm:
It should compute the sums until the last sum is less than 1e-15.
This was just supposed to be for fun and occupy at most half an hour ...
0
votes
1answer
10 views
How to get self-differences in sqlite table
does anyone know if there is a way to get this result in SQLite.
Given table with single column x like this:
x |
--
1
4
5
2
I need to add column dx, which is simply a difference x_i - x_{i-1} ...
-1
votes
1answer
32 views
Some doubts about how Prolog automatically convert DCG grammars int a set of rules
I am studying DCG grammar in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence" and I am finding some problem to understand how Prolog automatically convert a DCG grammar into a ...
0
votes
2answers
44 views
MySQL logic where function I think
I have about 500 rows with simliar data to the 4 rows below, from this exmaple I only want two rows to be returned using the following logic:
If emp No 817 sal_id = 2 is_active 0 then return 817 ...
1
vote
3answers
59 views
How to hide or delete the zero in my bash script?
This is my script:
echo -n "number 1 :";
read bil1
echo -n "number 2 :";
read bil2
multiple=$(echo $bil1*$bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0./');
echo " Your result : $bil1 * $bil2 = ...
0
votes
1answer
25 views
Transitivity on relations
I have a question concerning proving properties of Relations.
The question is this:
How would I go about proving that, if R and S (R and S both being different Relations) are transitive, then R ...
0
votes
3answers
45 views
If not (a and not b) and if (not a and b)
Can anyone explain why these two statements aren't equal?
if not(a and not b):
// do some stuff
if (not a and b):
// do some stuff
I tried to make my program more understandable by changing the ...
0
votes
2answers
34 views
UIScrollView at 3x zoom with UIView overlay
I have a UIScrollView containing a large image of size 3354 x 2082. I have the UIScrollView zoomed out to display the entire image. I am adding red circles like this:
CGRect positionFrame = ...
0
votes
0answers
31 views
A-star logic has its own mind
So I got help earlier for this program crashing, however the cost function has a mind of its own.
Its supposed to go through areas that have cost 1, and avoid cost 5 areas as much as possible. It ...
1
vote
2answers
19 views
Logical Query to calculate weeks
I ask user to enter start and end date in a certain application. Then I calculate the no. of weeks in between these two dates.
I want to fetch documents created per week in the given period of time.
...
-1
votes
2answers
40 views
Please help me, How to show number five in my bash script?
My Script
#!/bin/bash
clear
echo -n "number 1 : "
read bil1
echo -n "number 2 : "
read bil2
krng=$(echo $bil1 - $bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0./');
echo " Your result : $bil1 - $bil2 ...
-1
votes
1answer
76 views
whats wrong in this logic of finding longest common child of string
i came up with this logic to find longest common child of two strings of equal length but it runs successfuly only on simple outputs and fails others,pls guide me what i am doing wrong here.
...
1
vote
1answer
19 views
BFS visit in Prolog, why this program don't work?
I have take this program that impement BFS visit algorithm from Ivan Bratko book: "Programming for Artificial Intelligence".
It's logic is pretty clear form me (I have commented the lines of code ...
1
vote
2answers
39 views
Iterative deepening with Max depth constraint in Prolog
I have to modify the following Prolog program that implements the iterative deepening dfs search on a graph:
s(a, b).
s(b, c).
s(c, d).
s(a, d).
goal(d).
/* Solution is the inverse list of the ...
-1
votes
1answer
41 views
I need help finding an alternative to synchronous jQuery ajax
I have a very complex form which contains multiple tabs. Each tab contains a unique Plupload instance (for uploading multiple images). The form allows a user to upload a medical image 'case' where ...
-1
votes
2answers
92 views
Can someone explain the logic behind this? [closed]
So I was browsing trough old interview questions trying to brush up and I came across this problem which I posted below.
N friends are playing a game. Each of them has a list of numbers in front of ...
2
votes
2answers
47 views
PROLOG List filter predicate not aswering true or false
I'm trying to make a predicate that takes two vectors/lists and uses the first one as a filter. For example:
?- L1=[0,3,0,5,0,0,0,0],L2=[1,2,3,4,5,6,7,8],filter(L1,L2,1).
L1 = [0, 3, 0, 5, 0, 0, ...
1
vote
1answer
40 views
EPR formulas with equality and inequality
I am encoding sets as relations and operations over sets as universally quantified implications. I have a selection operator over sets that produces new sets by selecting elements satisfying a unary ...
0
votes
1answer
45 views
Converting propositional logic argument to Prolog
How do I translate the following argument into Prolog? It seems like it doesn't need predicates. (Note: I use & for a conjunction and | for a disjunction.)
G -> (H & J)
(H | J) -> S
...
0
votes
2answers
47 views
Adding a leading zero to a float number in a bash script
My script
#!/bin/bash
echo -n "number 1 :";
read number1
echo -n "number 2 :";
read number2
jlh=$(echo $number1 + $number2 | bc -l | sed 's/^\./0./');
echo "your result : $number1 + $number2 ...
1
vote
1answer
22 views
What does the semantic entailment relation mean (M |= A)?
I read many acticles about it. They described it as :
In logics, meaning is often described by a satisfaction relation
M |= A
that describes when a situation M satisfies a formula A.
...
1
vote
1answer
29 views
Is it correct this interpretation of DFS algorithm version that avoids loops in Prolog?
I am studying DFS algorithm the DFS algorithm version that avoids loops, this is the code
/* It is TRUE that Solution is the path from the start node Node to a goal state node
if it is TRUE the ...
0
votes
0answers
23 views
Creating a Malayalam Calendar
I am wondering how to create a Malayalam Calender using php?
The malayalam calendar is seems to be changing each and every year. So, is there any possible ways to do this in php.
This are some ...
0
votes
1answer
45 views
How to simplify boolean function into two logic gates?
Can anyone help me to simplify this boolean function into two logic gates?
C(out) = AC(in) + BC(in) + AB
-2
votes
0answers
49 views
Using GUI interactivly [closed]
So I am currently working on a project where we setup a regular Cartesian coordinate plane where there exists little blocks and circles. The little blocks move to find the circles. So I created boxes ...
2
votes
1answer
39 views
How to implement a solve predicate for this “moving blocks” Prolog exercise?
I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some difficulties to implement the final part of an exercise proposed
The exercise is a program ...
-4
votes
1answer
40 views
wrong answer for lowest common factor for high values [closed]
here is a code i have written to find the lowest common factor of 2 numbers other than 1.
Its pretty fast but the problem is that it seems to give some wrong answers for some high inputs.
I made this ...
1
vote
1answer
29 views
Some doubts about how work this particular query of a delete from a list predicate
I have a doubt about how work this query for this del/3 predicate:
/* BASE CASE: If I delete X from List and X is the HEAD of List, NewList is
the Tail of List
*/
del(X, [X|Tail], ...
1
vote
1answer
26 views
PROLOG predicate answers true or false, but not the desired value
I am new to Prolog, and got stuck trying to make an auxiliar function that takes elements from a list, 2 at a time, and makes a vector.
For example:
L=[0,0,0,0,0,0,0,0], v_form([2,3,1,1],L).
L = ...
2
votes
2answers
39 views
some doubts about a Prolog program that use a moves graph to move blocks on 3 stack
I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some problems trying to understand how work an exercise that use graphs to decide how to move ...
-3
votes
0answers
77 views
Coding A Sudoku Solver in Prolog [closed]
I am trying to code a sudoku solver in prolog; however it is returning false.
Here is the code I tried:
sudoku(Solution,Puzzle):-
PossibleNos = [1,2,3,4,5,6,7,8,9],
Solution = Puzzle,
Solution ...
1
vote
1answer
53 views
8 queen solution that use a space state “graph” in Prolog don't work
I am studying Prolog on Ivan Bratko book: Programming for Artificial Intelligence and on the book I have found this version of 8 Queens problem that use a space state "graph" to solve the problem:
...


