Mattrab Community - SXC asked a question

Here, f: A>B

f(x)= (x-1)/(x+2)  ;  x   -2 

A= {-1,0,1,2,3,4}

B= {-2,1,-1/2,0,1/2,1/4,2/5}

Range = {-2,-1/2,0,1/4,1/2,2/5}

As range is not equal to codomain so the given function is not bijective. 

We can make it bijective by omitting {1} from set B 

10 Thanks
2 Answers
Chandan Yadav over 1 year ago
6 Claps
2 Comments
KRISH YADAV

The Rh factor(the Rhesus factor or Rh antigen), is a protein that can be found on the surface of red blood cells. It is one of the most important blood group systems in human blood typing. The presence or absence of the Rh factor is denoted as either Rh-positive (+) or Rh-negative (-).

KRISH YADAV

Fun fact: The Rh factor is named after the Rhesus monkey, in which the protein was first discovered.

subash neupane asked a question

Hello Subash!

Here is the solution for the question you are asking for, I solved it in procedural way but if you are among the one who prefer OOP style then you can still ask it for me cause I have solved it from both methods but here I am just going to leave procedural one....

//author:Manish Acharya

import java.util.Scanner;

import java.util.*;


public class idgenerator {


public static void main(String[] args) {

String small_name="", long_name="", new_small_name="", new_long_name="";

char lr='a',...

6 Thanks
2 Answers
Bijaya Rajbhandari asked a question

Makar disclosed that he had killed the merchant because he realized his mistake and Aksionov's suffering and now he wanted to make Aksionov release from the prison.

1 Thanks
2 Answers
Nikas Ghimire asked a question


#include<stdio.h>

#include<conio.h>

#include<string.h>


int main() {

int i, nextTerm;

int t1 = 2, t2 = 2;

nextTerm = t1+t2;


printf("%d, %d, ", t1, t2);

for (i = 3; i <= 10; ++i) {

printf("%d, ", nextTerm);

t1 = t2;

t2 = nextTerm;

nextTerm = t1 + t2;

}


return 0;

}


2 Thanks
2 Answers
Close Open App