Tree Data Structures and Matrix Inversion

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

flashcard set

Earn XP

Description and Tags

This set covers key vocabulary for tree data structures and the mathematical process of matrix inversion based on the lecture notes.

Last updated 10:49 AM on 5/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

Root Node

The top-most unique node in a tree structure, identified as node 11 or node AA in the examples.

2
New cards

Edge

The connection between nodes, calculated by the formula n1n - 1, where nn is the total number of nodes.

3
New cards

Internal node

A node that has at least one child node.

4
New cards

Leaf node

A node with no children, where the height is always 00. Examples include nodes 9,14,15,6,11,13,169, 14, 15, 6, 11, 13, 16.

5
New cards

Siblings

Nodes that share the same parent node.

6
New cards

Degree of tree

The maximum number of children associated with any single node in the tree.

7
New cards

Height/Depth of tree

The maximum level reached by the tree, such as level 44 in a tree with 1616 nodes.

8
New cards

Ancestor

The preceding nodes in a path from the root to a specific node (e.g., for node EE, ancestors are B,AB, A).

9
New cards

Descendant

The nodes that follow a specific node in a branch (e.g., for node AA, descendants include BB).

10
New cards

Binary Tree

A type of tree where each node has a range of (0,1,2)(0, 1, 2) children, typically distinguished as the left child and right child.

11
New cards

A|A|

The determinant of matrix AA, which is calculated as 257257 in the provided matrix inversion example.

12
New cards

Adj A\text{Adj } A

The adjoint (or adjugate) matrix, used in the calculation of an inverse matrix.

13
New cards

A1A^{-1}

The inverse of matrix AA, defined by the formula A1=1AAdj AA^{-1} = \frac{1}{|A|} \text{Adj } A.

14
New cards

A×A1=IA \times A^{-1} = I

The property stating that a matrix multiplied by its inverse results in the identity matrix II.