For the uniqueness of circuit in matroid, refers to this note: http://math.mit.edu/~goemans/18433S13/matroid-notes.pdf. In the proof of Theorem 4.1, the last 2 sentences " Since S is also independent, we must have that |X| = |S| and since e ∈ C1 − f, we must have that X = S + e − f ∈ I. But this means that C2 ⊆ S + e − f = X which is a contradiction since C2 is dependent.". Can someone please explain why "|S| = |X|" and why "e ∈ C1 − f, we must have that X = S + e − f ∈ I."? I have had no clue on how it is from for hours..
Matroid, Unique Circuit Property
252 Views Asked by jy l At
1
There are 1 best solutions below
Related Questions in ALGORITHM
- MCNP 6 - Doubts about cells
- Given partially sorted array of type x<y => first apperance of x comes before first of y, sort in average O(n)
- What is the algorithm behind math.gcd and why it is faster Euclidean algorithm?
- Purpose of last 2 while loops in the merge algorithm of merge sort sorting technique
- Dots and Boxes with apha-beta pruning
- What is the average and worst-case time complexity of my string searching algorithm?
- Building a School Schedule Generator
- TC problem 5-2:how to calculate the probability of the indicator random variable?
- LCA of a binary tree implemented in Python
- Identify the checksum algorithm
- Algorithm for finding a subset of nodes in a weighted connected graph such that the distance between any pair nodes are under a postive number?
- Creating an efficent and time-saving algorithm to find difference between greater than and lesser than combination
- Algorithm to find neighbours of point by distance with no repeats
- Asking code suggestions about data structure and algorithm
- Heap sort with multithreading
Related Questions in SET
- mondrian3 set by aggregate
- Produce a combination of all permutations for 4 groups of data with 4 unique values contained
- How to find the difference between two python files and write output with file source information
- Is there a problem with my code? Finding null pointer Exception
- The difference between set definitions in Python
- Leetcode BFS Set insertion giving TLE (200. Number of Islands)
- set.find() not working for ordered multiset
- TinyMCE custom toolbar button to set CSS property of selected text
- Find a bit with no duplicates among multiple bits in Java
- Algorithm for comparing two sets of sets
- Order of a set in Python
- Proof on inductive sets
- Remove all elements from a set greater than a number
- Trying to prove a set to be the union of its singleton sets in Dafny
- Declaring a set of a set in Mosel
Related Questions in CIRCUIT
- Why my code for finding an Euler Circuit of a graph only works partially?
- Simulating 4bit FullAdder in python, not getting correct output
- Extract board outline of an PCB
- Expecting a SInt value from a Wire, in Chisel
- How to run QucsStudio at the command line?
- Blazor Server (NET 7): Uncaught (in promise) Error: Server returned an error on close: Connection closed with an error
- Can a non-constrained public signal be changed by an adversary in a Circom circuit?
- Simulating a circuit with initial conditions given in a loop with PySpice
- A switch to toggle only when going from 0 to 1
- 32 bits in single ROM address in Logisim Evolution
- My code ignores the if condition when checking the button state
- Multisim - AND Gate Always Giving An Output
- Why Circuit (circom) can't compare timestamp?
- Arduino Id Instance error on python vscde
- How do I identify the Boolean Expression of this logic circuit?
Related Questions in INDEPENDENT-SET
- Maximum independet set of size >= |E|
- How to test linear independence of boolean array in a pythonic way?
- Understanding Reductions to show NP-Completeness
- How do you compare samples if they are not Independent and Identical Distributed (IID)?
- Time complexity of greedy algorithm to find a maximal independent set of a graph
- Reduce SAT <=p Independent Set
- Filter a list of images by similarity relationship
- Check the least number of colors needed to color graph (chromatic number in 2-regular graph)
- Correlation between Independent Set and Matching
- extremal index in r extremes package
- Gauss-based Linear Independence Test for Binary vectors
- How can 3-SAT be reduced to Independent set?
- Finding all independent sets of a perfect graph
- How to create mask in a machine independent way?
- Algorithm: How to find the number of independent sets in a tree?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The author states without proof just below the definition of the axioms on the first page that maximal independent sets all have the same number of members. By I2, if you had two maximal independent sets of different sizes, you could take one of the elements from the larger one and use it to increase the smaller one, which is a contradiction. S and X are both maximal independent sets of S+e so |S| = |X|
X is independent because it is created by taking an independent set C1-f and making it maximally independent - so still independent. f is not an element of X because that would recreate C1 inside it, which we know is dependent. But there are only a total of |S|+1 elements to play with so if |X|=|S| and X does not contain f, it most contain e.