Messages

  • July. 5, 2024: Webpage created

Course summary

In this course we will talk about sublinear algorithms, which has its roots in the study of Big Data that occur more and more frequently in various applications, e.g., analyses of financial transactions, internet traffic, social networks, genome sequences, etc. Concretely, we will talk about:
1. Sublinear space algorithms. In particular, data stream algorithms, namely, algorithms that solve a problem by making one pass over the data set while using small memory. These algorithms are important in many application areas such as databases and networking, where data arrives at a high speed and there is no time and/or need to store it for offline processing.
2. Sublinear time algorithms, that is, algorithms that do not even read the whole input when outputting the answers.
3. Sublinear communication algorithms. The data is stored in multiple machines, who want to jointly compute functions defined on the union of the data sets via communication.
4. Random topics.
Participants are expected to have a good background in algorithm design and probability, and have good programming skills.
The evaluation will be based on homework assignments and individual project/presentation. The list of questions will be handed out in the middle of the course.
Detailed list of topics is available in the course plan below.

Lecturer

Qin Zhang
Email: qzhangcs@iu.edu
Office hours: by appointment

Time and place

11:30AM–12:45PM, Monday/Wednesday
AC C116.

Textbooks

  • There is no textbook for the class.
    Lectures are based on this notes by Chakrabarti, and recent papers.
  • Background on Randomized Algorithms:
    • [MR] Randomized Algorithms by Motwani and Raghavan
    • [MU] Probability and Computing by Mitzenmacher and Upfal

    Course schedule

     Week   Date   Section   Content   Literature   Slides   Comments 
      1   Aug. 20     0: Introduction     New models for Big Data     slides

    Grading

    The final grade will be curved.

    • Assignments ??%

      There will be ?? homework assignments. Assignments will be posted in the middle of the course. The answers should be typeset in LaTeX and submitted via Canvas; here is a template to start with.

    • Projects ??%

      The project consists of ?? components: 1. Write a proposal. 2. Write a report. 3. Make a presentation. The proposal and report should be typeset in LaTeX.
      The specifics of the project will be very flexible. During the course many problems will be introduced in various computational models for Big Data. A few of them will be discussed in detail, and the rest will only be mentioned briefly. For the project, you can for example:
      1. Pick a problem that is only briefly mentioned in the class and make a survey of its state-of-art results.
      2. Pick some algorithms that are mentioned in the class, implement them and compare with other algorithms that you can think of. (Some datasets that you can use will be posted soon)
      3. Propose new algorithms for problems in models that are discussed in the course. You can either analyze them theoretically (that is, prove some bounds on space/time/communication), or implement them and compare with existing algorithms.
      The grade of the projects will depend on how difficult the task is (e.g., proposing good new algorithms will generally be more difficult than understanding/implementing existing ones), and how well it is done.
      See here for some detailed instructions.

Literature

(will add more as we go along)

Course policies

For assignments, students may discuss answers with anyone, including problem approaches and proofs. But all students must write their own proofs, and write-ups. The names of all people that you have talked to should be listed at the beginning of the first page. If a solution comes from existing papers/web/books, they must be properly cited, and you must write the solution in a way that demonstrates your understanding (simply copying the solution will be considered as plagiarism). All deadlines are firm. No late assignments will be accepted unless there are legitimate circumstances.
For projects, you may discuss your project with anyone as well, but if this contributes to your final product, they must be acknowledged. Any outside materials used must be referenced appropriately.
For more details, see Indiana University Code of Student Rights, Responsibilities, and Conduct.

Prerequisites

    One is expected to know basics on algorithm design and analysis as well as probability. E.g., have taken B403 ``Introduction to Algorithm Design and Analysis" or equivalent courses.