-
-
Save pjastr/e1348bacb802553d9d70643aed3d6764 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//zad 2 | |
n=1:100 | |
wynik1=n^(-1) | |
wynik2=n^(-2) | |
wynik3=n^(-1/2) | |
wynik4=n.^(n^(-1)) // lub nthroon(n,n) | |
wynik5=(1+n^(-1)).^n | |
licznik=n^3-2*n^2+4 | |
mianownik=2*n^3+n^2+10*n+14 | |
wynik6=licznik.*mianownik^(-1) | |
// zad3 | |
//pierwszy przyklad | |
a=1:20 | |
b=factorial(a) | |
c=b^(-1) | |
wynik1=sum(c) | |
//drugi przykład | |
d=1:20 | |
e=2^d | |
f=factorial(d) | |
g=e.*f^(-1) | |
wynik2=sum(g) | |
//trzeci przyklad | |
h=1:40 | |
j=(-1)^h | |
k=factorial(2*h+1) | |
l=j.*k^(-1) | |
wynik3=sum(l) | |
//czwarty przykład | |
m=1:200 | |
n=(-1)^m | |
o=m.*n^(-1) | |
wynik4=sum(o) | |
//piaty przykład | |
p=1:1000 | |
q=p^(-2) | |
wynik5=sum(q) | |
//szósty przykład | |
r=1:50 | |
s=r^2 | |
t=2^r | |
u=s.*t^(-1) | |
wynik6=sum(u) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment