Skip to content

Commit

Permalink
badges and ntoes
Browse files Browse the repository at this point in the history
  • Loading branch information
brownsarahm committed Nov 11, 2024
1 parent 1d28131 commit bec738d
Show file tree
Hide file tree
Showing 7 changed files with 843 additions and 2 deletions.
2 changes: 2 additions & 0 deletions _practice/2024-11-07.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1. Write a C program to compare values as doubles and as float (single precision/32bit) to see that this comparison issue is related to the IEEE standard and is not language specific. Make notes and comparison around its behavior and include the program in a code cell in {index}`cdouble.md`
2. In {index}`floatexpt.md` design an experiment using the `fractions.Fraction` class in Python that helps illustrate why `.1*3 == .3` evaluates to `False` but `.1*4 ==.4` evaluates to `True`. Your file must include both code and interpretation of the results.
2 changes: 2 additions & 0 deletions _prepare/2024-11-12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1. Create {index}`operators.md` and make some notes about what you know about operators. What kinds of operators are you familiar with? Which have you seen in programming? math?
2. Refresh your knowledge of logical operations/ logic gates: and, or, xor, not. For an example reference [see the logicemu emulator we will use in class](https://lodev.org/logicemu/#id=logic_gates)
1 change: 1 addition & 0 deletions _review/2024-11-07.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1. Write a C program to compare values as doubles and as float (single precision/32bit) to see that the issue we saw with .1 is related to the IEEE standard and is not language specific. Make notes and comparison around its behavior and include the program in a code cell in {index}`cdouble.md`
21 changes: 20 additions & 1 deletion activities/practice.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,23 @@ Activities:

Activities:
```{include} ../_practice/2024-10-31.md
```
```


## 2024-11-06

[related notes](../notes/2024-11-06)

Activities:
```{include} ../_practice/2024-11-06.md
```


## 2024-11-07

[related notes](../notes/2024-11-07)

Activities:
```{include} ../_practice/2024-11-07.md
```

6 changes: 6 additions & 0 deletions activities/prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,10 @@ Activities:

Activities:
```{include} ../_prepare/2024-11-06.md
```

## 2024-11-12

Activities:
```{include} ../_prepare/2024-11-012.md
```
21 changes: 20 additions & 1 deletion activities/review.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,23 @@ Activities:

Activities:
```{include} ../_review/2024-10-31.md
```
```


## 2024-11-06

[related notes](../notes/2024-11-06)

Activities:
```{include} ../_review/2024-11-06.md
```


## 2024-11-07

[related notes](../notes/2024-11-07)

Activities:
```{include} ../_review/2024-11-07.md
```

Loading

0 comments on commit bec738d

Please sign in to comment.