Lesson 4 Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Vector has _________ and direction

A

Magnitude

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

Matrix has ____ dimensions

A

2

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

Matrix with equal number of rows and columns is called ___________ matrix

A

Square

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

Matrix, where off-diagonal elements are same, is called : ________
eg: [1,2,3; 2,5,1;3,1,6]

A

Symmetric

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

Curly brackets in python denote ______ or ___________.

A

Set or dictionary

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

Dictionary in python is a set of __ - _____ pairs

A

Key - value

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

What is the magnitude of null set

A

0

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

What is null set denoted by

A

phi symbol

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

Subset notation?

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

proper subset notation

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

Formula for jaccard measure

A

a intersection b / a U B

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

What range does jaccard value have

A

0 -1

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

What does jaccard value quantify

A

similarities between sets

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

What does JS(A,B) = 0.2 mean

A

That the sets are disssimilar

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

Matrix multiplication is commutative. True or false

A

False

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

Number of rows of first matrix should be equal to number of columns in second matrix for multiplication. True or false

A

False.
1st matrix column = second matrix row.

17
Q

A = mn
B = n
c
Dimensions of A*B =

A

m*c