Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Engineering Mathematics Expert

Q1. (a) Determine the truth value of the statement, give reasons for your answer.

(∀x ∈ R) (∃y ∈ R) ((y ≥ 0 ∧ y = x) v (x < 0 ∧ y = -x)).  

(b) Show that the statement ∃x∀yP(x, y) = ∀y∃xP(x, y) is universally valid, i.e. is true for any interpretation of the predicate P(x, y) in a non-empty domain U common for all quantifiers.

(c) Prove by contraposition that if a + b < 2n, then either a < n or b < n where the universe is the set of real numbers R. Write down the corresponding formal statement in Predicate Logic.

Q2. (a) Prove that if A and B are sets with A - B ⊆ B, then A ⊆ B. Do not use Venn diagrams.

(b) Let A be a set with precisely 4 elements, that is, |A| = A. Compute (just give final answer):

(1) |A x A| =

(2) |P(A)| =

(3) |P(P(A))1| =

(4) |A ∪ A| =

(5) |A ∩ A| =

(6) |A - A| =

(c) For sets A, B, C, D, let f : A → B and g : C → D be functions.

Let h : A x C → B x D be defined by

h((x, y)) = (f (x), g(y)) for all (x, y) ∈ A x C.

(i) Assume that f and g are both injective. Prove that then h is also injective.

(ii) Assume that f and g are both surjective. Prove that then h is also surjective.

Q3. (a) Show that f (x) = 5x4 + 3x2 + 2x + 1 is Θ(x4) by directly finding the least possible witnesses.

(b) Give as good a big-O estimate as possible (in terms of the standard reference functions) for the function

f(n) = n log(n3 + 1) + (n + 1) log(n!) + k=1Σnk, where n is a positive integer.

Q4. (a) Determine whether each binary relation R on the set Q of rational numbers is reflexive, symmetric, anti-symmetric, or transitive where xRy if and only if

(i) x ≠ y.

(ii) xy ≥ 1

(b) Find the equivalence classes [1] and [1/2] of 1 and 1/2 respectively for the equivalence relation R on R : (a, b) ∈ R. iff a - b ∈ Z.

Q5. Prove by induction

(a) k=1Σnk⋅2k = (n-1)2n+1 + 2, n ≥ 1.

(b) 1 + 1/√2 + 1/√3 + ⋅ ⋅ ⋅ + 1/√n > √n, n ≥ 2.

Q6. (a) For the Fibonacci sequence defined recursively by f0 = 0, f1 = 1, and fn+1 = fn + fn-1 for all n ≥ 1 prove that

fn+1 fn-1 - fn2 = (-1)n for all integers n ≥ 1.

(b) Show that the set S ⊆ Z defined by 1 ∈ S and s + t ∈ S whenever s ∈ S and t ∈ S is the set of positive integers Z+.

Q7. (a) Find a recurrence relation and give initial conditions for the number of bit strings of length n that contain at least 3 consecutive zeroes.

(b) How many bit strings of length 8 contain at least 3 consequtive zeroes?

Q8. (a) Solve the recurrence relation

an = -5an-1 - 6an-2 + 42 ⋅ 4n, n ≥ 2

with initial conditions a0 = 16, a1 = 65.

(b) (i) Which complete bipartite graphs Km,n are trees?

Let T be a full 8-ary tree with 201 vertices.

(ii) How many internal vertices does T have?

(iii) How many leaves does T have?

Q9. (a) Determine whether the digraphs G and H below are isomorphic.

227_figure.png

(b) For which values of n are the graphs Kn and Cn bipartite?

(c) Show that in a finite simple undirected graph with at least two vertices there must be two vertices of the same degree.

Q10. (a) Can someone cross all the bridges shown in this map exactly once and return to the starting point?

851_figure1.png

 (b) For which values of m and n does the complete bipartite graph Km,n have an

(i) Euler circuit?

(ii) Euler path?

(iii) Hamilton circuit?

(iv) Hamilton path?

Please provide detailed steps for the proofs.

Engineering Mathematics, Engineering

  • Category:- Engineering Mathematics
  • Reference No.:- M92331946

Have any Question?


Related Questions in Engineering Mathematics

Q undirected vs directed connectivitya prove that in any

Q: Undirected vs. directed connectivity. (a) Prove that in any connected undirected graph G = (V, E) there is a vertex v ? V whose removal leaves G connected. (Hint: Consider the DFS search tree for G.) (b) Give an examp ...

All these questions should be answered in matlab 1 generate

All these questions should be answered in MATLAB !!! 1. Generate a set of 3 random patterns of dimension 12 where each value is +1 or -1.(3 random 12*12 matrix) 2. Create a 12-unit Hopfield network (a 12x12 matrix) from ...

Assignment - lp problemsthe data for all the problems in

Assignment - LP problems The data for all the problems in this HW are included in the LP_problems_xlsx spreadsheet. Problem 1 - Cash Planning A startup investment project needs money to cover its cash flow needs. At the ...

Question a suppose that you are given an instance of the

Question : (a) Suppose that you are given an instance of the MST problem on a graph G, with edge weights that are all positive and distinct. Let T be the minimum spanning tree for G returned by Kruskal's algorithm. Now s ...

Question suppose that g is a directed graph in class we

Question : Suppose that G is a directed graph. In class we discussed an algorithm that will determine whether a given vertex can reach every other vertex in the graph (this is the 1-to-many reachability problem). Conside ...

Problem -consider a closed convex set x sub rd a function h

Problem - Consider a closed convex set X ⊂ R d , a function H : X x Ξ ι→ R d , and a deterministic nonnegative sequence {α n } such that n=0 ∑ ∞ α n = ∞ and n=0 ∑ ∞ (α n ) 2 = ∞. Consider an inner product (·, ·) on R d , ...

Numerical analysis assignment -q1 define the following

Numerical Analysis Assignment - Q1. Define the following terms: (i) Truncation error (ii) Round-off error Q2. Show that if f(x) = logx, then the condition number, c(x) = |1/logx|. Hence show that log x is ill-conditioned ...

Math assignment -q1 let fx -x3-cosx and p0 1 use newtons

Math Assignment - Q1. Let f(x) = -x 3 -cos(x), and p 0 = 1. Use Newton's method to find p 2 . Could p0=0 be used? Q2. Perform two iterations by Newton's method and the secant method to each of the following: a. e x + 2 - ...

Clculus assignment -q1 find the total differential of w

CALCULUS ASSIGNMENT - Q1. Find the total differential of w = x 3 yz + xy + z + 3 at (x, y, z) = (1, 2, 3). Q2. Find the value of the double integral ∫∫ R (6x + 2y 2 )dA where R = {(x, y)| - 2 ≤ y ≤ 1, y 2 ≤ x ≤ 2 - y. Q3 ...

1 this problem concerns of the proof of the np-completeness

(1) This problem concerns of the proof of the NP-completeness of 300L a) Convert the formula F into a 300L graph b) Find a solution for the 300L instance of F and verify that it is a solution for F F = (Z 1 V Z 2 ) ^ (z ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As