diff --git a/Podstawy Programowania I/README.org b/Podstawy Programowania I/README.org index 6d09312..47f2196 100644 --- a/Podstawy Programowania I/README.org +++ b/Podstawy Programowania I/README.org @@ -84,16 +84,7 @@ Sprawdzić czy x jest liczbą nieparzystą. Wypisać odpowiedni komunikat. Nie wykonywać działań, kiedy pierwsza wczytana liczba będzie zerem. ** Zadanie 2 Obliczyć wartość funkcji określonej wzorem: -#+BEGIN_EXPORT LaTeX -$$y(x) = -\begin{cases} - \frac{3}{4} * x^{3} * \frac{7}{8} x & \text{dla x ∈ [-10, 0]} \\ - \frac{1}{sin(x) + 3} & \text{dla x ∈ (0, 4]} \\ - -2x/3 & \text{dla pozostalych} -\end{cases}$$ -#+END_EXPORT -#+HTML: LaTeX - +[[../resources/svg/pp1zad2.svg]] Dane: x – typu rzeczywistego ** Zadanie 3 Napisać program pozwalający obliczyć diff --git a/resources/svg/pp1zad2.svg b/resources/svg/pp1zad2.svg new file mode 100644 index 0000000..af98c13 --- /dev/null +++ b/resources/svg/pp1zad2.svg @@ -0,0 +1,249 @@ + +y left-parenthesis x right-parenthesis equals StartLayout Enlarged left-brace 1st Row 1st Column three-fourths asterisk x cubed asterisk seven-eighths x 2nd Column dla x element-of less-than hyphen 10 comma 0 greater-than 2nd Row 1st Column StartFraction 1 Over s i n left-parenthesis x right-parenthesis plus 3 EndFraction 2nd Column dla x element-of left-parenthesis 0 comma 4 greater-than 3rd Row 1st Column minus 2 x slash 3 2nd Column dla pozostalych EndLayout + + + diff --git a/resources/tex/pp1zad2.tex b/resources/tex/pp1zad2.tex new file mode 100644 index 0000000..323c905 --- /dev/null +++ b/resources/tex/pp1zad2.tex @@ -0,0 +1,7 @@ +\color{grey}{ +y(x) = +\begin{cases} + \frac{3}{4} * x^{3} * \frac{7}{8} x & \text{dla x ∈ <-10, 0>} \\ + \frac{1}{sin(x) + 3} & \text{dla x ∈ (0, 4>} \\ + -2x/3 & \text{dla pozostalych} +\end{cases}}