Representing Connectivity Flashcards

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

What is a connectivity matrix?

A

A matrix that represents a network (also called a graph).

Connectivity matrix is commonly called an ‘adjacency’ matrix.

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

What types of Brain Connectivity exist?

A

Brain connectivity refers to the network of neural connections in the brain. It includes:

*	Structural Connectivity: Physical links between neurons or brain regions, often represented by anatomical pathways.
*	Functional Connectivity: Statistical relationships between neural activities in different regions.
*	Effective Connectivity: Causal influence one neural system exerts over another.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A 3-neuron ring is a cyclic directed network where each neuron connects to the next in ring. What’s its adjacency matrix?

assume rows are ‘from’ and columns are ‘to’

A

0 1 0
0 0 1
1 0 0

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

What is an Adjacency Matrix?

A

An adjacency matrix, also called connectivity matrix, is a square matrix used to represent a graph or network. In brain connectivity:

*	Rows and columns represent neurons or brain regions.
*	Entries (0 or 1) indicate the absence (0) or presence (1) of a connection.
*	It provides a compact representation of the network’s structure.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What’s the Adjacency Matrix representation of a 3 neuron ring?

A

A 3-neuron ring is a circular network where each neuron connects to the next. The adjacency matrix for this network is:

0 1 0
0 0 1
1 0 0

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

What’s a recurrent neural network?

A

In a recurrent network, neurons have feedback loops, possibly including self-connections.

One possible adjacency matrix is:

1 1 0
0 1 1
1 0 1

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

What is the Adjacency matrix of a feed forward neural network with three neurons where neuron 1 projects to 2 and 3?

A

A feedforward network involves a single neuron projecting to two others. The adjacency matrix is:

0 1 1
0 0 0
0 0 0

*	Neuron 1 projects to Neurons 2 and 3.
*	Neurons 2 and 3 have no outgoing connections.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Describe the network in the following adjacency matrix:

1 1 0
0 1 1
1 0 1

A
  • Neurons have self-connections (diagonal 1s).
    • Neuron 1 connects to Neuron 2.
    • Neuron 2 connects to Neuron 3.
    • Neuron 3 connects back to Neuron 1.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is a weighted graph?

A

It’s a network where edges have weights (usually real numbers).

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

What’s a directed graph?

A

It’s a graph where edges are directed from nodes in a specific order. Directed graphs are usually not symmetrical.

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

Make the adjacency matrix for this network.

A

Note: this is an undirected network

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

What is the ‘in-degree’ of a node in a network?

node = neuron

A

The number of incoming-connections

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

Given an adjacency matrix, how can you calculate the in-degree for all nodes?

assume the matrix is unweighted

A

By summing the matrix columnwise.

Because each column represents the incoming connections into a neuron.

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