[ Prev ]
2022-05-12

-- May 11 In-Class Exercise Thread
L =   Delta = 0.1 Let L' be the elements of L excluding those within factor delta of L(i) 50 * 1.1 = 55 Skip 51, 55 70*1.1 = 77 Skip 71 82*1.1 = 90.2 Skip 83, 84 Choose 99. L' = 
<nowiki> L = <50, 51, 55, 70, 71, 82, 83, 84, 99>  Delta = 0.1 Let L' be the elements of L excluding those within factor delta of L(i) 50 * 1.1 = 55 Skip 51, 55 70*1.1 = 77 Skip 71 82*1.1 = 90.2 Skip 83, 84 Choose 99. L' = <50, 70, 82, 99> </nowiki>

-- May 11 In-Class Exercise Thread
[50, 51, 55, 70,71, 82, 83, 84, 99] <50>
 51, 55 <= (50*1.1) = 55 
Skip 51, 55 <50, 70>
 71 <= (70*1.1)=77 
Skip 71 <50, 70, 82>
 83, 84 <= (82*1.1) 90.2 
skip 83, 84 <50, 70, 82, 99>
[50, 51, 55, 70,71, 82, 83, 84, 99] <50> 51, 55 <= (50*1.1) = 55 Skip 51, 55 <50, 70> 71 <= (70*1.1)=77 Skip 71 <50, 70, 82> 83, 84 <= (82*1.1) 90.2 skip 83, 84 <50, 70, 82, 99>
2022-05-14

-- May 11 In-Class Exercise Thread
 
 
L=⟨50,51,55,70,71,82,83,84,99⟩ 
 
δ=0.1 
 
1) 50 
50/1+.1= 50/1.1= 45.45 
L'= <50> 
 
2) 51
51/1+.1= 51/1.1= 46.36 so skip 51 as L' already contains 50 satisying the condition. 
 
3) 55 
55/1+.1= 55/1.1= 50 so skip 55 as L' already contains 50 satisfying conditions. 
 
4) 70
70/1+.1= 70/1.1= 63.63, as no value in L' is greater than 63.63, so ad 70 to list.
L'=<50,70> 
 
5) 71
71/1+.1= 71/1.1= 65.54, so skip 71 as L' already contains 70 satisfying conditions. 
 
6) 82 
82/1+.1= 82/1.1= 74.54 as no value in L' is greater than 74.54, so add 82 to list.
L'=<50,70,82> 
 
7) 83
83/1+.1= 83/1.1= 75.45, so skip 83 as L' already contains 82 satisfying conditions. 
 
8) 84
84/1+.1= 84/1.1= 76.36, so skip 84 as L' already contains 82 satisfying conditions. 
 
9) 99 
99/1+.1= 99/1.1= 90 as no value in L' is greater than 90, so add 99 to list.
L'=<50,70,82,99> 
 
So L'= <50,70,82,99>
<pre> L=⟨50,51,55,70,71,82,83,84,99⟩ δ=0.1 1) 50 50/1+.1= 50/1.1= 45.45 L'= <50> 2) 51 51/1+.1= 51/1.1= 46.36 so skip 51 as L' already contains 50 satisying the condition. 3) 55 55/1+.1= 55/1.1= 50 so skip 55 as L' already contains 50 satisfying conditions. 4) 70 70/1+.1= 70/1.1= 63.63, as no value in L' is greater than 63.63, so ad 70 to list. L'=<50,70> 5) 71 71/1+.1= 71/1.1= 65.54, so skip 71 as L' already contains 70 satisfying conditions. 6) 82 82/1+.1= 82/1.1= 74.54 as no value in L' is greater than 74.54, so add 82 to list. L'=<50,70,82> 7) 83 83/1+.1= 83/1.1= 75.45, so skip 83 as L' already contains 82 satisfying conditions. 8) 84 84/1+.1= 84/1.1= 76.36, so skip 84 as L' already contains 82 satisfying conditions. 9) 99 99/1+.1= 99/1.1= 90 as no value in L' is greater than 90, so add 99 to list. L'=<50,70,82,99> So L'= <50,70,82,99> </pre>

-- May 11 In-Class Exercise Thread
Resource Description for WhatsApp Image 2022-05-15 at 3.50.06 PM.jpeg
((resource:WhatsApp Image 2022-05-15 at 3.50.06 PM.jpeg|Resource Description for WhatsApp Image 2022-05-15 at 3.50.06 PM.jpeg))

-- May 11 In-Class Exercise Thread
[50, 51, 55, 70,71, 82, 83, 84, 99] <50>
 51, 55 <= (50*1.1) = 55 
Skip 51, 55 <50, 70>
 71 <= (70*1.1)=77 
Skip 71 <50, 70, 82>
 83, 84 <= (82*1.1) 90.2 
skip 83, 84 <50, 70, 82, 99>
'''[50, 51, 55, 70,71, 82, 83, 84, 99] <50>''' 51, 55 <= (50*1.1) = 55 '''Skip 51, 55 <50, 70>''' 71 <= (70*1.1)=77 '''Skip 71 <50, 70, 82>''' 83, 84 <= (82*1.1) 90.2 '''skip 83, 84 <50, 70, 82, 99>'''

-- May 11 In-Class Exercise Thread
Resource Description for inclassLast.jpeg
((resource:inclassLast.jpeg|Resource Description for inclassLast.jpeg))
2022-05-15

-- May 11 In-Class Exercise Thread
Given: 
L = {50, 51, 55, 70, 71, 82, 83, 84, 99}
δ = 0.1
Condition = y/(1 + δ) <= z <= y 
 
L[1] : 50
50/1.1 = 45.45
L’ = {50} 
 
L[2] : 51
51/1.1 = 46.36; since 50 already satisfies the condition, we skip 51 
 
L[3] : 55
55/1.1 = 50; since 50 already satisfies the condition, we skip 55 
 
L[4] : 70
70/1.1 = 63.63
L’ = {50, 70} 
 
L[5] : 71
71/1.1 = 64.54; since 70 already satisfies the condition, we skip 71 
 
L[6] : 82
82/1.1 = 74.54
L’ = {50, 70, 82} 
 
L[7] : 83
83/1.1 = 75.45; since 82 already satisfies the condition, we skip 83 
 
L[8] : 84
84/1.1 = 76.36; since 82 already satisfies the condition, we skip 84 
 
L[9] : 99
99/1.1 = 90
L’ = {50, 70, 82, 99}
(Edited: 2022-05-15)
<pre> Given: L = {50, 51, 55, 70, 71, 82, 83, 84, 99} δ = 0.1 Condition = y/(1 + δ) <= z <= y L[1] : 50 50/1.1 = 45.45 L’ = {50} L[2] : 51 51/1.1 = 46.36; since 50 already satisfies the condition, we skip 51 L[3] : 55 55/1.1 = 50; since 50 already satisfies the condition, we skip 55 L[4] : 70 70/1.1 = 63.63 L’ = {50, 70} L[5] : 71 71/1.1 = 64.54; since 70 already satisfies the condition, we skip 71 L[6] : 82 82/1.1 = 74.54 L’ = {50, 70, 82} L[7] : 83 83/1.1 = 75.45; since 82 already satisfies the condition, we skip 83 L[8] : 84 84/1.1 = 76.36; since 82 already satisfies the condition, we skip 84 L[9] : 99 99/1.1 = 90 L’ = {50, 70, 82, 99} </pre>

-- May 11 In-Class Exercise Thread
Resource Description for IMG-7005.jpg
((resource:IMG-7005.jpg|Resource Description for IMG-7005.jpg))

-- May 11 In-Class Exercise Thread
Given: 
L = {50,51,55,70,71,82,83,94,99}, 𝛅 = 0.1
Elements that can be trimmed = 51, 55, 71, 83, 84 (with 1+𝛅)
Thus, L' = {50,70,82,99}
<pre> Given: L = {50,51,55,70,71,82,83,94,99}, 𝛅 = 0.1 Elements that can be trimmed = 51, 55, 71, 83, 84 (with 1+𝛅) Thus, L' = {50,70,82,99} </pre>

-- May 11 In-Class Exercise Thread
[50, 51, 55, 70,71, 82, 83, 84, 99] <50>
 51, 55 <= (50*1.1) = 55 
Skip 51, 55 <50, 70>
 71 <= (70*1.1)=77 
Skip 71 <50, 70, 82>
 83, 84 <= (82*1.1) 90.2 
Skip 83, 84 <50, 70, 82, 99> 
<pre> [50, 51, 55, 70,71, 82, 83, 84, 99] <50> 51, 55 <= (50*1.1) = 55 Skip 51, 55 <50, 70> 71 <= (70*1.1)=77 Skip 71 <50, 70, 82> 83, 84 <= (82*1.1) 90.2 Skip 83, 84 <50, 70, 82, 99> </pre>
[ Next ]
X