Initial commit

This commit is contained in:
2022-10-25 16:01:18 +02:00
parent 9ed797bdb6
commit b9c4f1e806
138 changed files with 252275 additions and 0 deletions

Binary file not shown.

Binary file not shown.

10
PI/PI.md Normal file
View File

@@ -0,0 +1,10 @@
# PI Overview
adiunkt dr Robert Tutajewicz <robert.tutajewicz@polsl.pl>
Katedra Matematyki Stosowanej informatyka stosowana p.518
https://platforma.polsl.pl/rau2/course/view.php?id=766
```ccard
type: folder_brief_live
```

View File

@@ -0,0 +1,10 @@
pla# Wykład 1
## Wstęp do informatyki
#informatyka ma tyle wspólnego z komputerami co astronomia z teleksopami - [Edsger Dijkstra]
#informatyka to dziedzina wiedzy i działalności człowieka zajmująca się gromadzeniem, przetwarzaniem i wykorzystywaniem informacji - [Stefan Węgrzyn]
#informatyka to systematyczne badanie procesów algorytmicznych, które pozyskują i przetwarzają informacje: ich teoria, analiza, projektowanie, efektywność implementacja i zastosowanie - [Association of Computer Machinery]
![[00 - Wstęp.pdf]]
## Algorytmy
![[01 - Algorytmy.pdf]]

View File

@@ -0,0 +1,9 @@
$a=0 \land b=0 \land c=0 \Rightarrow x \in \mathbb{R}$
$a=0 \land b=0 \land c \ne 0 \Rightarrow x = \emptyset$
$a=0 \land b \ne0 \Rightarrow x = \frac {-c}{b}$
$a \ne 0$
$\Updelta = b^2 -4ac$
$ax^2 + bx + c = 0$
$x \in \mathbb{R} ; a,b,c \in \mathbb{R}$

View File

@@ -0,0 +1,48 @@
## Jak policzyć słowa w książce?
```cpp
const int rozmiar_książki = 300;
int liczba_słów_na_stronie[rozmiar_książki];
liczba_słów_na_stronie[2]=20; // <-- 20 słów na stronie 3
int suma = liczba_słów_na_stronie[0];
for (int nr = 1;nr<rozmiar;nr++){
suma+=liczba_słów_na_stronie[nr];
}
```
![[Drawing 2022-10-24 12.04.19.excalidraw]]
## Funkcja wyliczająca minimum i maksimum
```CpP
void minmax1(double a[],int &min, int &max){
max = 0;
for (int i = 1; i<n;i++)
if (a[i]>a[max]){
max = i;
}
min = 0;
for (int i = 1; i<n;i++)
if (a[i]<a[max]){
min = i;
}
} //2(n-1)
void minmax2(double a[],int &min, int &max){
max = min = 0;
for (int i = 1; i<n;i++)
if (a[i]>a[max]){
max = i;
};
if (a[i]<a[max]){
min = i;
};
} //2(n-1)
void minmax3(double a[],int &min, int &max){
max = min = 0;
for (int i = 1; i<n;i++)
if (a[i]>a[max]){
max = i;
} else if (a[i]<a[max]){
min = i;
};
} // opt n-1 where 1/n!; pes 2(n-1) where 1/n; avg 2(n-1)-ln(n)-C
```

View File

@@ -0,0 +1,18 @@
# Ćwiczenia Overview
Kartkówki - 2-3 na semestr
|Punkty|Ocena|
|:---:|---:|
|6.0-6.79|3|
|6.8-7.59 | 3.5|
|7.6-8.39 | 4|
|8.4-9.19 | 4.5|
|9.2-10.6 | 5|
[https://platforma.polsl.pl/rau2/course/view.php?id=766](https://platforma.polsl.pl/rau2/course/view.php?id=766)
`Tele###2`
```ccard
type: folder_brief_live
```