Natural systems Flashcards

1
Q

What is the formula for Euler’s method

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

What is the local error in Euler’s method

A

O(dt^2)

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

What is the global error in Euler’s Method

A

O(dt)

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

What are the conditions of stability in a equilibrium point

A

for step +dt
f’(x+dt) > 0: unstable
f’(x+dt) < 0: stable

f’(x+dt) = 0:
f’‘(x+dt) < 0: stable
f’‘(x+dt) > 0: unstable

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

What is the product rule

A

d/dt (uv) = u v’ + u’ v

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

What is the quotient rule

A

d/dt (u/v) = (v u’ - u v’)/v^2

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

What is an autonomous system

A

A system which does not explicitly contain t

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

What is a non-autonomous system

A

A system which explicitly contains t

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

what is the formula for the mid point method

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

What is the RK2 formula

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

What is the RK4 formula

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

What is the equilibrium condition for 2D ODEs

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

How do we study the stability of an equilibrium point in multiple dimensions

A

We compute the Jacobian at the equilibrium point and study the signs of the eigenvalues

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

What is the eigenvalue and eigenvector equation for the Jacobian

A

v is the eigenvectors, lambda is the eigenvalues

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

What are the stability conditions on eigenvalues

A

if both are negative then stable, If both are positive then unstable, if different signs, then it is a saddle point, which is unstable.

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

What is the idea behind agent based modelling

A

We encode realistic behaviours (both logical and random) into agents, these agents can then be allowed to interact within a realistic environment,

17
Q

What are the two types of communication in agent based modelling

A

Direct communication
Indirect communication

18
Q

what is direct communication in ABM

A

in an interaction between agents, their status is directly updated. This is easy to implement but interactions are harder to track. Synchronous updates are not possible.

19
Q

What is indirect communication in ABM

A

When agents interact, they send a message which will be acted on later. Allows interactions to be tracked, harder to implement

20
Q

What are the two types on indirect communication in ABM

A

Global message lists:
All agents write messages to a global list

Local message lists:
Agents write messages to a local table,
code can be parallelised.

21
Q

What are the two types of updates in ABM

A

Asynchronous - messages are acted upon immediately, the agent acting first may have an advantage

Synchronous - messages are acted upon at the same time, order is not important, but may act on incorrect information

22
Q

What is the heuristic for drawing 2D phase plots

A

If the system has opposite sign eigenvalues: Saddle point: follow eigenvector directions

If the system has the same sign eigenvalues:
consider the behaviour at different points. Lines will go to/ start from equilibrium.

Complex:
Real part +ve -> spiral away from eqm point
real part -ve -> spiral toward eqm point

23
Q

What are the main parts of a neuron

A

Dendrites - Input device
Soma - CPU
Axon - Output

24
Q

What is the formula for the leaky integrate and fire model

A