Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9173163
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T16:31:30+00:00 2026-06-17T16:31:30+00:00

I am trying to multiply two vectors in Prolog but, if those vectors contain

  • 0

I am trying to multiply two vectors in Prolog but, if those vectors contain imaginary numbers, I can’t get it to work. My code so far:

vector_product([X|Xs],[Y|Ys],OP) :-
    inner(Xs,Ys,OP1),
    OP is X*Y+OP1.
vector_product([],[],0).
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T16:31:32+00:00Added an answer on June 17, 2026 at 4:31 pm

    See if this could help you…

    Formulae from Wikipedia:

    % (a+bi) + (c+di) = (a+c) + (b+d)i
    c_sum((A,B), (C,D), (E,F)) :- E is A+C, F is B+D.
    
    % (a+bi) (c+di) = (ac-bd) + (bc+ad)i
    c_mul((A,B), (C,D), (E,F)) :- E is A*C - B*D, F is B*C + A*D.
    

    Numbers are represented as (Real, Imaginary).

    vector_product([X|Xs], [Y|Ys], OP) :-
        vector_product(Xs, Ys, OP1),
        c_mul(X, Y, M),
        c_sum(M, OP1, OP).
    vector_product([], [], (0,0)).
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to multiply two arrays without using numpy. But, I receive an error
I am new to Xcode, i am just trying to multiply the two numbers
I am trying to add/sub/multiply two complex numbers. Terminal said there is a SyntaxError
I am trying to multiply two strings, but I am getting the wrong answer.
I am trying to multiply two 3x3 matrices. The first 2 numbers in the
Im trying to multiply two 16 bit numbers with the following NASM codes: mov
I am trying to multiply two vectors together where each element of one vector
I'm trying to multiply two matrices using vecLibs' cblas: #include <stdlib.h> #include <string.h> #include
I am trying to overload the * operator in order to multiply two objects
I'm trying to multiply the same double (square it) but the number comes out

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.