Math 8 Flashcards

1
Q

what are f-strings?

A

strings that are formatted with curlies } as place holders for objects
Syntax:
f”this is a string with and {object}”
object = object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

subraction?

A

NOPE doesnt exist

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

if else in python?

A

if else blocks always start with and if statement. if yoou want to chain them together use elif.
Syntax:

if conditional:
this is indented
elif conditional:
this is indented
else:
final indent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

while loop?

A

use a loop to repeat sections of code when you aren’t sure how many times you need to repeat an action.
Syntax:
while conditional:
—–need to indent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

data types?

A

Strings
Floats
Integer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

assignment operator?

A

==
!=
<
>
<=
>=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are linear patterns and what are non-linear?

A

Linear grows at a constant and is a strait line when graphed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

import in python

A

import in python allows you to use other peoples

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

function notation

A

give a name to a function. generally we use a single letter followed by parahesis that tell you the variable.

f(x) = 2x +1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

function creation

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

for linear equations what formula can always be used

A

y=mx+b
y=independent variable
m=growth
x=independent variable
b=initial condition

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

2n - 3 - n + 4 = n + 2

A

no solution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does it mean to solve and equation?

A

Find the value of 1 of the variables that make the equation true.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a graph?

A

A visual representation of every possible solution to an equation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a system of equations?

A

More than one equation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly