-
Notifications
You must be signed in to change notification settings - Fork 3
/
numeros.pl~
51 lines (39 loc) · 1.31 KB
/
numeros.pl~
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
%numeros del 1 al 5
numero(1).
numero(2).
numero(3).
numero(4).
numero(5).
%producto cartesiano de los numeros
productoCartesiano(X,Y):-numero(X),numero(Y).
%seleccion de numeros menores a un valor
seleccionarNumeroMenor(X,Y):-numero(X),X<Y.
%seleccion de numeros mayores a un valor
seleccionarNumeroMayor(X,Y):-numero(X),X>Y.
%seleccion de pares xy donde x<y
seleccionarParesXMenorY(X,Y):-productoCartesiano(X,Y),X<Y.
%seleccion de pares xy donde x>y
seleccionarParesXMayorY(X,Y):-productoCartesiano(X,Y),X>Y.
%proyeccion primero del par
proyectarPrimeroDelParXMenorY(X):-seleccionarParesXMenorY(X,_).
%maximo de los numeros proyectados
maximo(X):-numero(X),not(proyectarPrimeroDelParXMenorY(X)).
%tripla de numeros
tripla(X,Y,Z):-numero(X),numero(Y),numero(Z).
%operador de corte ,!
tripla1(X,Y,Z):-!,numero(X),numero(Y),numero(Z).
tripla2(X,Y,Z):-numero(X),!,numero(Y),numero(Z).
tripla3(X,Y,Z):-numero(X),numero(Y),!,numero(Z).
tripla4(X,Y,Z):-numero(X),numero(Y),numero(Z),!.
%funcion partida
%f(x)={-x si x<=0; -x si 0<x<1; x^2 si x>=1}
f(X,Y):-Y is -X,X=<0.
f(X,Y):-Y is X,X<1,X>0.
f(X,Y):-Y is X*X,X>=1.
%factorial
factorial(0,1):-!.
factorial(X,F):-X1 is X-1,factorial(X1,F1),F is X*F1.
%fibonacci
fibonacci(0,1):-!.
fibonacci(1,1):-!.
fibonacci(X,F):-X1 is X-1,X2 is X-2,fibonacci(X1,F1),fibonacci(X2,F2),F is F1+F2.