At the simplest level,
Create a table for the faculty
FACULTY table:
f_id int4 Primary key
f_name varchar (person's name)
create a table for the courses
COURSE table:
c_id int4 primary key
c_name varchar(course name)
create a semester reference table
SEMESTER table:
s_id int4 primary key
s_name varchar(semester title)
Create a table grouping this info:
FACULTY_COURSE_GRP table:
f_id int4 foreign key to FACULTY table
c_id int4 foreign key to COURSE table
s_id int4 foregin key to SEMESTER table
An sql query grouping these would give you what you need.