<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="https://peda.net/:static/546/atom.xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>koodausta</title>
<id>https://peda.net/id/fc83080cf51</id>
<updated>2018-01-09T10:13:34+02:00</updated>
<link href="https://peda.net/id/fc83080cf51:atom" rel="self" />
<link href="https://peda.net/p/kopharjuh/hk7/matematiikka/koodausta#top" rel="alternate" />
<logo>https://peda.net/:static/546/peda.net.logo.bg.svg</logo>
<rights type="html">&lt;div class=&quot;license&quot;&gt;Tämän sivun lisenssi &lt;a rel=&quot;license noopener&quot; href=&quot;https://peda.net/info&quot; target=&quot;_blank&quot;&gt;Peda.net-yleislisenssi&lt;/a&gt;&lt;/div&gt;&#10;</rights>

<entry>
<title>26.11</title>
<id>https://peda.net/id/afe59f6af17</id>
<updated>2018-11-26T14:07:36+02:00</updated>
<link href="https://peda.net/p/kopharjuh/hk7/matematiikka/koodausta/nimet%C3%B6n-afe5#top" />
<content type="html">&lt;br/&gt;&#10;(define(P x) (- 6 x))                                 &lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;6 -12 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;56 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;25 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;16 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;-2&lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;45 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;-108 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;15 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;76 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;22 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;652 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;34 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;102400040 &lt;/span&gt;&lt;span class=&quot;wescheme-number Rational replOutput&quot;&gt;&lt;span&gt;&lt;span&gt;-0.10001 &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;6 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;8 &lt;/span&gt;&lt;span class=&quot;wescheme-number Integer replOutput&quot;&gt;528&lt;/span&gt;&lt;br/&gt;&#10;(P 0)&lt;br/&gt;&#10;(P 18)&lt;br/&gt;&#10;(P -50)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define(R x) (+ (* 3 x) 10))&lt;br/&gt;&#10;(R 5)&lt;br/&gt;&#10;(R 2)&lt;br/&gt;&#10;(R -4)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define (T x) (- x -9))&lt;br/&gt;&#10;(T 36)&lt;br/&gt;&#10;(T -117)&lt;br/&gt;&#10;(T 6)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define (H a) (- (* 8 a a) -4))&lt;br/&gt;&#10;(H 3)&lt;br/&gt;&#10;(H -1.5)&lt;br/&gt;&#10;(H 9)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define (S x) (+ (* x x x x x ) x))&lt;br/&gt;&#10;(S 2&lt;br/&gt;&#10;(S (40))&lt;br/&gt;&#10;(S (-0.1))&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define (Q y) (+ (* y y y) 6 y 2))&lt;br/&gt;&#10;(Q -1)&lt;br/&gt;&#10;(Q 0)&lt;br/&gt;&#10;(Q 8)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define (Y a b) (- (* 2 a a ) 5 a b (+(3b))))&lt;br/&gt;&#10;(P a = 1 b= -3)&lt;br/&gt;&#10;(P a = -4 b= 7)</content>
<published>2018-11-26T13:44:52+02:00</published>
</entry>

<entry>
<title>emt</title>
<id>https://peda.net/id/79eba0a0421</id>
<updated>2018-11-26T13:45:45+02:00</updated>
<link href="https://peda.net/p/kopharjuh/hk7/matematiikka/koodausta/jotain-paskaa#top" />
<content type="html">(define v 4)&lt;br/&gt;&#10;(+ (* 3 v) 6)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define x -5)&lt;br/&gt;&#10;(+ x 7)&lt;br/&gt;&#10;(- x 9)&lt;br/&gt;&#10;(* 11 x)&lt;br/&gt;&#10;(+ x 3)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define a 7)&lt;br/&gt;&#10;(- a 9)&lt;br/&gt;&#10;(* 16 a)&lt;br/&gt;&#10;(+ 2 a 8)&lt;br/&gt;&#10;(- 3 a 11)&lt;br/&gt;&#10;&lt;br/&gt;&#10;(define f -2) (define y 8)&lt;br/&gt;&#10;(+ f y)&lt;br/&gt;&#10;(/ y f)&lt;br/&gt;&#10;&lt;br/&gt;&#10;&lt;br/&gt;&#10;&lt;br/&gt;&#10;</content>
<published>2018-04-17T11:29:42+03:00</published>
</entry>


</feed>